37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
/** Use Cases 섹션 — DEMO UseCases */
|
|
|
|
export type UseCaseCard = {
|
|
title: string;
|
|
items: string[];
|
|
cardClass: string;
|
|
iconClass: string;
|
|
animClass: string;
|
|
};
|
|
|
|
export const USE_CASE_CARDS: UseCaseCard[] = [
|
|
{
|
|
title: "Premium Medical Business",
|
|
items: [
|
|
"SEO 콘텐츠 자동 생산으로 검색 상위 노출 달성",
|
|
"비용 부담 없이 고품질 영상 콘텐츠 대량 확대",
|
|
"자연 검색 유입 증가로 인한 환자 전환율 상승",
|
|
],
|
|
cardClass:
|
|
"glass-card p-10 md:p-12 bg-gradient-to-br from-status-info-bg/50 to-white border border-status-info-border/30",
|
|
iconClass: "text-status-info-dot",
|
|
animClass: "animate-fade-in-left animation-delay-100",
|
|
},
|
|
{
|
|
title: "Marketing Agency",
|
|
items: [
|
|
"AI 기반 콘텐츠 제작 자동화로 생산성 극대화",
|
|
"블로그 텍스트 기반 영상 제작 자동화로 리소스 절감",
|
|
"다수 클라이언트 계정의 통합 운영 및 효율화",
|
|
],
|
|
cardClass:
|
|
"glass-card p-10 md:p-12 bg-gradient-to-br from-status-good-bg/50 to-white border border-status-good-border/30",
|
|
iconClass: "text-violet-500",
|
|
animClass: "animate-fade-in-right animation-delay-200",
|
|
},
|
|
];
|