Skip to content

Commit

Permalink
feat: footer 전 페이지 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
ssu-it-support committed Oct 9, 2024
1 parent 4eb9030 commit dd67415
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 39 deletions.
36 changes: 0 additions & 36 deletions src/pages/main/layout/headerLayout.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/pages/main/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export function MainPage() {
</div>
</main>
<Spacing size={202} direction="vertical" />
<Footer />
</>
);
}
4 changes: 2 additions & 2 deletions src/pages/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ import { NoticeEditPage } from './notice/noticeEdit/page';
import { NoticeDetailPage } from './notice/noticeDetail/page';
import NoticePatchPage from './notice/noticePatch/page';
import { AuditPatchPage } from './audit/auditPatch/page';
import { HeaderLayout } from './main/layout/headerLayout';
import { LostArticlePage } from './lost-article/page';
import { LostArticleEditPage } from './lost-article/edit/page';
import CampusPage from './campus/page';
import { LostDetailPage } from './lost-article/detail/page';
import { LostPatchPage } from './lost-article/patch/page';
import PersonalDataPage from './personal-data/page';
import { Layout } from './layout/headerLayout';

export function MainRouter() {
return (
<Routes>
<Route path="/" element={<HeaderLayout />}>
<Route path="/" element={<Layout />}>
<Route path="/" element={<MainPage />} />
{/*소개*/}
<Route path="/intro" element={<IntroPage />} />
Expand Down

0 comments on commit dd67415

Please sign in to comment.