diff --git a/apps/web/src/app/university/page.tsx b/apps/web/src/app/university/page.tsx deleted file mode 100644 index 8c879c02..00000000 --- a/apps/web/src/app/university/page.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Metadata } from "next"; - -import TopDetailNavigation from "@/components/layout/TopDetailNavigation"; -import { HOME_UNIVERSITY_LIST } from "@/constants/university"; - -import HomeUniversityCard from "./(home)/_ui/HomeUniversityCard"; - -export const revalidate = 3600; // 1시간마다 재검증 (ISR) - -export const metadata: Metadata = { - title: "대학 선택 | 솔리드커넥션", - description: "소속 대학교를 선택하여 교환학생 정보를 확인하세요.", -}; - -const UniversitySelectPage = () => { - return ( - <> - -
-
-

소속 대학교 선택

-

- 소속 대학교를 선택하면 -
- 해당 대학의 교환학생 정보를 확인할 수 있습니다. -

-
- -
- {HOME_UNIVERSITY_LIST.map((university) => ( - - ))} -
-
- - ); -}; - -export default UniversitySelectPage; diff --git a/apps/web/tsconfig.ci.json b/apps/web/tsconfig.ci.json index afb814e2..86819f17 100644 --- a/apps/web/tsconfig.ci.json +++ b/apps/web/tsconfig.ci.json @@ -1,7 +1,7 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "typeRoots": ["./node_modules/@types", "../../node_modules/@types"], + "typeRoots": ["./node_modules/@types"], "types": ["react", "react-dom"], "skipLibCheck": true }