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

36 lines
1.6 KiB
TypeScript

import type { OtherChannelsReport } from "@/types/otherChannels";
/** DEMO `mockReport` 기타 채널 + 웹사이트 진단 */
export const MOCK_OTHER_CHANNELS_REPORT: OtherChannelsReport = {
channels: [
{ name: "카카오톡", status: "active", details: "상담 전용 채널 운영", url: "pf.kakao.com/_xbtVxjl" },
{ name: "네이버 블로그", status: "unknown", details: "Naver API 연동 필요" },
{ name: "네이버 플레이스", status: "unknown", details: "Naver API 연동 필요" },
{ name: "TikTok", status: "not_found", details: "계정 없음 또는 비활성" },
{
name: "강남언니",
status: "active",
details: "4.8점, 18,840 리뷰, 28 의료진",
url: "gangnamunni.com/hospitals/189",
},
{ name: "모두닥", status: "active", details: "기본 정보 등재" },
{ name: "Goodoc", status: "active", details: "기본 정보 등재" },
{ name: "닥터나우", status: "active", details: "기본 정보 등재" },
],
website: {
primaryDomain: "viewclinic.com",
additionalDomains: [
{ domain: "viewplasticsurgery.com", purpose: "영문 국제 사이트" },
{ domain: "viewclinic-chat.com", purpose: "채팅 상담 전용" },
{ domain: "viewclinic.modoo.at", purpose: "구 모두홈페이지" },
],
snsLinksOnSite: false,
trackingPixels: [
{ name: "Facebook Pixel", installed: true, details: "ID: 299151214739571" },
{ name: "Kakao Pixel", installed: true },
{ name: "Google Tag Manager", installed: true, details: "GTM-52RT6DMK" },
],
mainCTA: "전화 + 카카오톡 상담",
},
};