refactor: ContentPillar.relatedUSP → relatedUsp (백엔드 스키마 정합)

main
Mina Choi 2026-05-20 11:50:14 +09:00
parent be71918644
commit 87062f76eb
3 changed files with 7 additions and 7 deletions

View File

@ -88,7 +88,7 @@ export default function ContentStrategy({ data }: ContentStrategyProps) {
</h4> </h4>
<p className="text-sm text-slate-600 mb-3">{pillar.description}</p> <p className="text-sm text-slate-600 mb-3">{pillar.description}</p>
<span className="inline-block rounded-full bg-slate-100 px-3 py-1 text-xs font-medium text-slate-700 mb-4"> <span className="inline-block rounded-full bg-slate-100 px-3 py-1 text-xs font-medium text-slate-700 mb-4">
{pillar.relatedUSP} {pillar.relatedUsp}
</span> </span>
<ul className="space-y-2"> <ul className="space-y-2">
{pillar.exampleTopics.map((topic, j) => ( {pillar.exampleTopics.map((topic, j) => (

View File

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

View File

@ -67,7 +67,7 @@ export interface ChannelStrategyCard {
export interface ContentPillar { export interface ContentPillar {
title: string; title: string;
description: string; description: string;
relatedUSP: string; relatedUsp: string;
exampleTopics: string[]; exampleTopics: string[];
color: string; color: string;
} }