o2o-clinicad-frontend/src/features/report/constants/report_sections.ts

19 lines
728 B
TypeScript

/**
* SubNav·IntersectionObserver와 각 섹션 `id`가 일치해야 합니다.
*/
export const REPORT_SECTIONS = [
{ id: "header", label: "개요" },
{ id: "clinic-snapshot", label: "의원 현황" },
{ id: "channel-overview", label: "채널 종합" },
{ id: "youtube-audit", label: "YouTube" },
{ id: "instagram-audit", label: "Instagram" },
{ id: "facebook-audit", label: "Facebook" },
{ id: "other-channels", label: "기타 채널" },
{ id: "problem-diagnosis", label: "문제 진단" },
{ id: "transformation", label: "변환 전략" },
{ id: "roadmap", label: "로드맵" },
{ id: "kpi-dashboard", label: "KPI" },
] as const;
export type ReportSectionId = (typeof REPORT_SECTIONS)[number]["id"];