문서 업데이트: 프론트엔드 구조에 컴포넌트 및 유틸리티 추가

- components/common/ (Lightbox, LightboxIndicator)
- utils/date.js (dayjs 기반 날짜 유틸리티)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-01-21 12:11:36 +09:00
parent e1a07f4849
commit a1090e56c0

View file

@ -42,10 +42,15 @@ fromis_9/
│ │ │ ├── public/ # 공개 API │ │ │ ├── public/ # 공개 API
│ │ │ └── admin/ # 어드민 API │ │ │ └── admin/ # 어드민 API
│ │ ├── components/ # 공통 컴포넌트 │ │ ├── components/ # 공통 컴포넌트
│ │ │ └── common/
│ │ │ ├── Lightbox.jsx # 이미지 라이트박스 (PC)
│ │ │ └── LightboxIndicator.jsx
│ │ ├── pages/ │ │ ├── pages/
│ │ │ ├── pc/ # PC 페이지 │ │ │ ├── pc/ # PC 페이지
│ │ │ └── mobile/ # 모바일 페이지 │ │ │ └── mobile/ # 모바일 페이지
│ │ ├── stores/ # Zustand 스토어 │ │ ├── stores/ # Zustand 스토어
│ │ ├── utils/
│ │ │ └── date.js # dayjs 기반 날짜 유틸리티
│ │ └── App.jsx │ │ └── App.jsx
│ ├── vite.config.js │ ├── vite.config.js
│ ├── Dockerfile # 프론트엔드 컨테이너 │ ├── Dockerfile # 프론트엔드 컨테이너