Skip to content

Commit

Permalink
fix: guide 페이지 임시 텍스트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
danah-kim committed Dec 1, 2024
1 parent 11e8425 commit 1a6ce8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import Error404Page from "@pages/error/404/page";
import Error500Page from "@pages/error/500/page";
import HowToConnectPage from "@pages/faq/how-to-connect/page";
import FaqPage from "@pages/faq/page";
import ConvenientSchedulingMethodPage from "@pages/guide/convenient-scheduling-method/page";
import GuidePage from "@pages/guide/page";
import HomePage from "@pages/page";
import PrivacyPage from "@pages/privacy/page";
Expand All @@ -20,10 +19,6 @@ function App() {
<Route path="/faq" element={<FaqPage />} />
<Route path="/faq/how-to-connect" element={<HowToConnectPage />} />
<Route path="/guide" element={<GuidePage />} />
<Route
path="/guide/convenient-scheduling-method"
element={<ConvenientSchedulingMethodPage />}
/>
<Route path="/terms" element={<TermsPage />} />
<Route path="/privacy" element={<PrivacyPage />} />
<Route path="/:lang" element={<LangLayout />}>
Expand Down
5 changes: 3 additions & 2 deletions src/pages/guide/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import Typography from "@components/atoms/Typography";
import GeneralLayout from "@components/layouts/GeneralLayout";
import Footer from "@components/molecules/Footer";
import Header from "@components/molecules/Header";
import GuideList from "@pages/guide/_components/GuideList";
import { GoogleFirebase } from "@utils/google-firebase";

function GuidePage() {
Expand All @@ -17,7 +16,9 @@ function GuidePage() {
<Typography variant="headline" fontWeight={700} mt={2} mb={2}>
User Guide
</Typography>
<GuideList />
<Typography fontWeight={500} mt={2} mb={2}>
Coming Soon !
</Typography>
</GeneralLayout>
);
}
Expand Down

0 comments on commit 1a6ce8f

Please sign in to comment.