diff --git a/src/features/plan/components/ContentStrategy.tsx b/src/features/plan/components/ContentStrategy.tsx
index ff212a5..15d1672 100644
--- a/src/features/plan/components/ContentStrategy.tsx
+++ b/src/features/plan/components/ContentStrategy.tsx
@@ -88,7 +88,7 @@ export default function ContentStrategy({ data }: ContentStrategyProps) {
{pillar.description}
- {pillar.relatedUSP}
+ {pillar.relatedUsp}
{pillar.exampleTopics.map((topic, j) => (
diff --git a/src/features/plan/lib/transformPlan.ts b/src/features/plan/lib/transformPlan.ts
index 1a96f76..0c1a21b 100644
--- a/src/features/plan/lib/transformPlan.ts
+++ b/src/features/plan/lib/transformPlan.ts
@@ -89,35 +89,35 @@ function buildContentPillars(
{
title: '전문성 · 신뢰',
description: '의료진 소개, 수술 과정, 인증/자격, 학회 발표, 해외 연수 콘텐츠로 신뢰 구축',
- relatedUSP: '전문 의료진',
+ relatedUsp: '전문 의료진',
exampleTopics: services?.slice(0, 3).map(s => `${s} 시술 과정 소개`) || ['시술 과정 소개'],
color: PILLAR_COLORS[0],
},
{
title: '비포 · 애프터',
description: '실제 환자 사례, 수술 전후 비교, 3D 시뮬레이션, 시간별 변화 기록으로 결과 시각화',
- relatedUSP: '검증된 결과',
+ relatedUsp: '검증된 결과',
exampleTopics: services?.slice(0, 3).map(s => `${s} 비포/애프터`) || ['비포/애프터 사례'],
color: PILLAR_COLORS[1],
},
{
title: '환자 후기 · 리뷰',
description: '실제 환자 인터뷰, 후기 콘텐츠, 강남언니 리뷰 관리로 사회적 증거 확보',
- relatedUSP: '환자 만족도',
+ relatedUsp: '환자 만족도',
exampleTopics: ['환자 인터뷰 영상', '리뷰 하이라이트', '회복 일기'],
color: PILLAR_COLORS[2],
},
{
title: '트렌드 · 교육',
description: '시술 트렌드, Q&A, 의학 정보, 비용 가이드로 잠재 고객 유입',
- relatedUSP: '최신 트렌드',
+ relatedUsp: '최신 트렌드',
exampleTopics: ['자주 묻는 질문 Q&A', '시술별 비용 가이드', '최신 성형 트렌드'],
color: PILLAR_COLORS[3],
},
{
title: '안전 · 케어',
description: '수술 후 관리, 24시간 모니터링, 전담 간호사, 리커버리 프로그램으로 프리미엄 케어 차별화',
- relatedUSP: '프리미엄 안전 관리',
+ relatedUsp: '프리미엄 안전 관리',
exampleTopics: ['수술 후 48시간 집중 케어', '전담 간호사 1:1 관리', '응급 대응 프로토콜'],
color: PILLAR_COLORS[4],
},
diff --git a/src/features/plan/types/plan.ts b/src/features/plan/types/plan.ts
index c2bf74e..d2d6439 100644
--- a/src/features/plan/types/plan.ts
+++ b/src/features/plan/types/plan.ts
@@ -67,7 +67,7 @@ export interface ChannelStrategyCard {
export interface ContentPillar {
title: string;
description: string;
- relatedUSP: string;
+ relatedUsp: string;
exampleTopics: string[];
color: string;
}