- 페이지 폴더 구조를 문서대로 정리 (pc/, mobile/ 하위 폴더) - Mobile Schedule 리팩토링 (1,495줄 → 780줄, 48% 감소) - MobileCalendar를 별도 공통 컴포넌트로 분리 - MobileBirthdayCard에 motion/delay 지원 추가 - 중복 상수 통합: CATEGORY_ID, MIN_YEAR, SEARCH_LIMIT, MEMBER_ENGLISH_NAMES - sections/utils.js 중복 함수 제거 (@/utils에서 re-export) - formatXDateTime 함수 개선 (datetime 문자열 직접 처리) - 모바일 유튜브 숏츠 표시 개선 (가로 비율, 전체화면시 세로) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
697 B
JavaScript
14 lines
697 B
JavaScript
// PC 컴포넌트
|
|
export { default as ScheduleCard } from './ScheduleCard';
|
|
export { default as AdminScheduleCard } from './AdminScheduleCard';
|
|
export { default as Calendar } from './Calendar';
|
|
|
|
// Mobile 컴포넌트
|
|
export { default as MobileScheduleCard } from './MobileScheduleCard';
|
|
export { default as MobileScheduleListCard } from './MobileScheduleListCard';
|
|
export { default as MobileScheduleSearchCard } from './MobileScheduleSearchCard';
|
|
export { default as MobileCalendar } from './MobileCalendar';
|
|
|
|
// 공통 컴포넌트
|
|
export { default as CategoryFilter } from './CategoryFilter';
|
|
export { default as BirthdayCard, MobileBirthdayCard, fireBirthdayConfetti } from './BirthdayCard';
|