nextjs 사이드바 만들기
hooks 사용 할 수 있도록 설치합니다. shadcn에 있는 skeleton 사용하기 위해서 추가합니다. 레이아웃 파일을 생성 합니다. navbar가 상단에 있는 경우 콘텐츠가 보이지 않을 수 있어서 pt를 통해서 아래 보이도록 합니다. 메뉴를 표현하는 도구로 accordion과 separator를 추가합니다. /app/(platform)/(dashboard)/organization/layout.tsx 사이드바 콤포넌트를 생성합니다. /app/(platform)/(dashboard)/_components/sidebar.tsx 생성한 Sidebar를 불러오도록 layout.tsx 파일을 수정합니다. /app/(platform)/(dashboard)/organization/layout.tsx 사이드바를 마무리합니다. /app/(platform)/(dashboard)/_components/sidebar.tsx NavItem 선택하는 시점부터 네이게이션 … Read more