84 lines
4.0 KiB
TypeScript
84 lines
4.0 KiB
TypeScript
import type { TransformationProposal } from "@/features/report/types/transformationProposal";
|
|
|
|
/** DEMO `mockReport.transformation` */
|
|
export const MOCK_TRANSFORMATION: TransformationProposal = {
|
|
brandIdentity: [
|
|
{ area: "로고", asIs: "채널마다 다른 로고 4종", toBe: "VIEW 골드 로고 1종 통일" },
|
|
{ area: "컬러 팔레트", asIs: "없음 (혼재)", toBe: "Primary: Gold (#C4A462) + Dark (#1A1A1A)" },
|
|
{ area: "프로필 사진", asIs: "KR=모델, EN=로고, FB=깃털", toBe: "전 채널 VIEW 골드 로고 통일" },
|
|
{ area: "바이오 메시지", asIs: "채널마다 다른 메시지", toBe: '"안전이 예술이 되는 곳 — 21년 무사고 VIEW"' },
|
|
{ area: "해시태그", asIs: "비체계적", toBe: "#뷰성형외과 #VIEW성형 #강남성형외과 #21년무사고" },
|
|
],
|
|
contentStrategy: [
|
|
{ area: "콘텐츠 캘린더", asIs: "없음", toBe: "월간 콘텐츠 캘린더 (4주 사이클)" },
|
|
{
|
|
area: "업로드 빈도",
|
|
asIs: "YouTube 주1회, Instagram 비정기",
|
|
toBe: "YouTube 주3회 + Instagram 일1회 + Shorts/Reels 주5회",
|
|
},
|
|
{
|
|
area: "콘텐츠 포맷",
|
|
asIs: "KR Instagram = 카드뉴스만",
|
|
toBe: "카드뉴스 30% + Reels 40% + 카루셀 20% + Stories 10%",
|
|
},
|
|
{
|
|
area: "콘텐츠 앵글",
|
|
asIs: "시술 정보 중심 (병원 관점)",
|
|
toBe: "환자 의사결정 보조 중심 (환자 관점)",
|
|
},
|
|
{ area: "톤앤매너", asIs: "없음", toBe: '"차분한 전문가" — 과장 없이, 설명으로 설득' },
|
|
],
|
|
platformStrategies: [
|
|
{
|
|
platform: "YouTube",
|
|
icon: "youtube",
|
|
currentMetric: "103K subscribers",
|
|
targetMetric: "200K / 12개월",
|
|
strategies: [
|
|
{ strategy: "업로드 빈도 3배 증가", detail: "주 3회 (롱폼 1 + Shorts 2)" },
|
|
{ strategy: "기존 영상 재활용", detail: "1,064개 기존 영상에서 AI 숏폼 100개 추출" },
|
|
{ strategy: "썸네일 시스템화", detail: "VIEW 골드 워터마크 + 일관된 폰트/컬러" },
|
|
{ strategy: "커뮤니티 탭 활용", detail: "주 2회 투표/질문 — 구독자 참여 활성화" },
|
|
],
|
|
},
|
|
{
|
|
platform: "Instagram KR",
|
|
icon: "instagram",
|
|
currentMetric: "14K followers",
|
|
targetMetric: "50K / 12개월",
|
|
strategies: [
|
|
{ strategy: "Reels 즉시 시작", detail: "YouTube Shorts 동시 게시 → 최소 주 5개" },
|
|
{ strategy: "프로필 사진 교체", detail: "모델 사진 → VIEW 골드 로고" },
|
|
{ strategy: "팔로잉 정리", detail: "4,760 → 300 이하로 정리" },
|
|
{ strategy: "Stories 활성화", detail: "일 2~3개 (상담 비하인드, 병원 일상)" },
|
|
],
|
|
},
|
|
{
|
|
platform: "Facebook",
|
|
icon: "facebook",
|
|
currentMetric: "KR 253 + EN 88K",
|
|
targetMetric: "통합 관리",
|
|
strategies: [
|
|
{ strategy: "계정 통합", detail: "KR 253명 페이지 → EN 88K 페이지로 통합 또는 폐쇄" },
|
|
{ strategy: "로고 통일", detail: "보라색 깃털 → VIEW 골드 로고" },
|
|
{ strategy: "역할 정의", detail: "FB = 광고 랜딩 + 리타겟 전용" },
|
|
],
|
|
},
|
|
],
|
|
websiteImprovements: [
|
|
{
|
|
area: "SNS 링크",
|
|
asIs: "홈페이지에 0개",
|
|
toBe: "Header/Footer에 YouTube + Instagram + KakaoTalk 링크",
|
|
},
|
|
{ area: "YouTube 임베드", asIs: "없음", toBe: "시술 페이지별 관련 YouTube 영상 임베드" },
|
|
{ area: "콘텐츠 허브", asIs: "없음", toBe: "SEO 콘텐츠 허브 구축 (시술별 가이드)" },
|
|
{ area: "도메인 통합", asIs: "4개 도메인 분산", toBe: "viewclinic.com 단일 도메인 + /en 국제 페이지" },
|
|
],
|
|
newChannelProposals: [
|
|
{ channel: "TikTok", priority: "P1", rationale: "20~30대 첫 수술 고민층 도달, YouTube Shorts 동시 배포" },
|
|
{ channel: "네이버 블로그", priority: "P0", rationale: "한국 검색 1위 플랫폼 — SEO 핵심" },
|
|
{ channel: "네이버 플레이스", priority: "P0", rationale: "지역 검색 노출 필수" },
|
|
],
|
|
};
|