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

15 lines
1.1 KiB
TypeScript

import type { KpiMetric } from "@/features/report/types/kpiDashboard";
/** DEMO `mockReport.kpiDashboard` */
export const MOCK_KPI_METRICS: KpiMetric[] = [
{ metric: "YouTube 구독자", current: "103K", target3Month: "115K", target12Month: "200K" },
{ metric: "YouTube 월 조회수", current: "~270K", target3Month: "500K", target12Month: "1.5M" },
{ metric: "YouTube Shorts 평균 조회수", current: "500~1,000", target3Month: "5,000", target12Month: "20,000" },
{ metric: "Instagram KR 팔로워", current: "14K", target3Month: "20K", target12Month: "50K" },
{ metric: "Instagram KR Reels 평균 조회수", current: "0 (없음)", target3Month: "3,000", target12Month: "10,000" },
{ metric: "Instagram EN 팔로워", current: "68.8K", target3Month: "75K", target12Month: "100K" },
{ metric: "네이버 블로그 방문자", current: "0 (없음)", target3Month: "5,000/월", target12Month: "30,000/월" },
{ metric: "웹사이트 → SNS 유입", current: "0%", target3Month: "5%", target12Month: "15%" },
{ metric: "콘텐츠 → 상담 전환", current: "측정 불가", target3Month: "UTM 추적 시작", target12Month: "월 50건" },
];