Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/#148 jongse qa 3 #187

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: footer 전 페이지 적용
ssu-it-support committed Oct 9, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
dseguin David Seguin
commit dd674154d248c559cab48d4d5552a2ee4a6f86fa
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
@@ -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
@@ -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 />} />