-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 다차원 대분류 추가 * fix: 2차원 여부 표시 * feat: 입학 대분류 페이지 추가 * feat: 시설 예약 대분류 페이지 추가 * feat: 대분류 아이템 영어 이름 추가 * design: 대분류 제목 패딩 조정 * design: 헤더 색 투명하게 변경
- Loading branch information
1 parent
aa6992c
commit c0bd4b5
Showing
7 changed files
with
109 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
import { getAboutDescription } from '@/apis/about'; | ||
|
||
import MajorCategoryPageLayout from '@/components/layout/pageLayout/MajorCategoryPageLayout'; | ||
|
||
export default async function AboutPage() { | ||
const description = await getAboutDescription(); | ||
|
||
return <MajorCategoryPageLayout subtitle="About CSE" description={description} />; | ||
return <MajorCategoryPageLayout subtitle="About CSE" />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import MajorCategoryPageLayout from '@/components/layout/pageLayout/MajorCategoryPageLayout'; | ||
|
||
export default async function AcademicsPage() { | ||
return <MajorCategoryPageLayout subtitle="Learning CSE" twoDimensional />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import MajorCategoryPageLayout from '@/components/layout/pageLayout/MajorCategoryPageLayout'; | ||
|
||
export default async function AdmissionsPage() { | ||
return <MajorCategoryPageLayout subtitle="Enroll CSE" twoDimensional />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import MajorCategoryPageLayout from '@/components/layout/pageLayout/MajorCategoryPageLayout'; | ||
|
||
export default async function ReservationsPage() { | ||
return <MajorCategoryPageLayout subtitle="Reserve CSE" twoDimensional />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters