commit 메시지 규칙

# Feat     : 새로운 기능 추가
# Fix      : 버그 수정
# Docs     : 문서 수정
# Test     : 테스트 코드 추가
# Refactor : 코드 리팩토링, 파일 혹은 폴더명을 수정하거나 옮기는 작업만인 경우, 파일을 삭제하는 작업만 수행한 경우
# Design   : CSS 및 레이아웃 작업
# Chore    : 코드 외 빌드 부분 혹은 패키지 매니저 수정사항

/src 디렉터리 구조

┏━ /app
┣━ /components
┣━ /constants
┣━ /containers
┣━ /func
┣━ /mocks
┣━ /store
┣━ /styles
┣━ /types
┗━ middleware.ts

/app 디렉터리 구조

┏━ (logged)
┃    page.tsx (home)
┃    layout.tsx
┃	   ┣━ @modal / default.tsx
┃	   ┃    ┣━ (.)member
┃	   ┃    ┃   ┗━ [id]/page.tsx 
┃	   ┃    ┗━ (.)recruit
┃	   ┃        ┣━ manage/page.tsx
┃	   ┃        ┗━ partner/page.tsx
┃	   ┣━ explore
┃	   ┣━ home
┃	   ┣━ messages
┃	   ┃    ┗━ [userId] page.tsx 
┃	   ┣━ member
┃	   ┃    ┗━ [id]/page.tsx
┃	   ┃          ┣━ edit-password/page.tsx
┃	   ┃          ┗━ info/page.tsx
┃	   ┣━ mypage
┃	   ┣━ notifiactions
┃	   ┣━ profile
┃	   ┃    ┗━ [accountName]/page.tsx
┃	   ┣━ record/page.tsx 기록글 작성P
┃	   ┃    ┗━ [id]/page.tsx 기록글 상세P
┃	   ┃         ┗━ manage/page.tsx 기록글 수정P
┃	   ┣━ recruits/page.tsx        
┃		 ┗━ recruit/page.tsx 모집글 작성P
┃         ┗━ [id]/page.tsx 모집글 상세P
┃	             ┗━ update/page.tsx 모집글 수정P
┃
┃	              
┗━ (not-logged)
		 layout.tsx
     ┣━ createAccount
     ┣━ login
     ┗━ findPassword