Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
☘️ 작업 내용
라우트 그룹
모각코 때 공유드린 것처럼 admin과 service 라우트 그룹을 만들었습니다.
어드민 페이지와 그 외의 페이지 서로 layout이 달라서 그룹을 만들었어요.
이렇게 그룹을 지으면,
app/layout.tsx를 만들 수 없더라구요. (공식문서)그래서
app/(admin)/layout.tsx와app/(service)/layout.tsx공통되는 코드를app/layout.tsx에 둘 수 없었습니다.어드민 페이지
사이드바와 테이블 UI 정도 만들었고, 없는 UI는 기능 구현할 때 붙일 예정입니다.
어드민 페이지 경로는
/admin입니다. 현재는 주소창에 직접 입력하여 접속 부탁드립니다.