-
Notifications
You must be signed in to change notification settings - Fork 1
[ROUTE] 페이지 URL & Directory
YI Na-yeon edited this page Jul 2, 2024
·
1 revision
-
- (rotue)
- (route)/page.tsx
- (route)/layout.tsx
-
-
- /register :이메일로 회원가입
- /register/auth : 회원가입 이메일 인증
- /register/category : 관심 카테고리 선택 ( 건너뛰기 )
-
- /login : 이메일로 로그인
- /find : 이메일 찾기
- /pw-reset : 비밀번호 재설정
-
- (auth)/layout.tsx
- (auth)/page.tsx
- (auth)/register/page.tsx : 이메일로 회원가입
- (auth)/register/auth/page.tsx : 회원가입 이메일 인증
- (auth)/register/category/page.tsx : 관심 카테고리 선택 ( 건너뛰기 )
- (auth)/login/page.tsx : 이메일로 로그인
- (auth)/find/page.tsx : 이메일 찾기
- (auth)/pw-reset/page.tsx : 비밀번호 재설정
-
-
- /studyroom/create : 스터디룸 개설
- /studyroom/[studyroomId] : 스터디 참여자 입장 스터디룸
- /studyroom/[studyroomId] : 스터디 개설자 입장 스터디룸
- /studyroom/[studyroomId]/setting : 스터디 개설자 스터디룸 설정
-
- (studyroom)/studyroom/create/page.tsx : 스터디룸 개설
- (studyroom)/studyroom/[studyroomId]/page.tsx : 스터디룸 입장
- (studyroom)/studyroom/[studyroomId]/setting/page.tsx : 스터디개설자 스터디룸 설정
-
- /my/profile : 내 프로필
- /my/study : 내 스터디 활동
- /my/like-study : 찜한 스터디
- /my/post : 내가 작성한 글
- /logout : 로그아웃 ( 버튼 )
-
- (route)/my/layout.tsx
- (route)/my/page.tsx
- (route)/my/profile/page.tsx : 내 프로필
- (route)/my/study/page.tsx : 내 스터디 활동
- (route)/my/like-study/page.tsx : 찜한 스터디
- (route)/my/post/page.tsx : 내가 작성한 글
-
- /post : 커뮤니티 홈
- /post/[postId] : 커뮤니티 상세게시글
- /post/write : 커뮤니티 글쓰기 페이지
-
- (route)/post/page.tsx
- (route)/post/[postId]/page.tsx
- (route)/post/write/page.tsx
-
- /study : 스터디 페이지
- /study/search?s=검색결과( 조건에 따른 key값 ) : 스터디 검색 결과
- /study/[studyId] : 스터디 상세페이지
-
- (route)/study/page.tsx : 스터디 페이지
- (route)/study/search/page.tsx : 스터디 검색결과 페이지
- (route)/study/[studyId]/page.tsx : 스터디 상세페이지