80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
/** Core Modules 섹션 — DEMO Modules */
|
|
|
|
export type CoreModule = {
|
|
step: string;
|
|
title: string;
|
|
items: string[];
|
|
highlight: string;
|
|
};
|
|
|
|
export const CORE_MODULES: CoreModule[] = [
|
|
{
|
|
step: "1",
|
|
title: "Marketing Intelligence",
|
|
items: [
|
|
"브랜딩, 마케팅 현황 분석",
|
|
"타겟 고객 분석",
|
|
"키워드 분석",
|
|
"경쟁 및 포지셔닝 분석",
|
|
"SEO 전략 & 채널별 콘텐츠 기획",
|
|
],
|
|
highlight: "AI 기반 시장 통찰력 도출",
|
|
},
|
|
{
|
|
step: "2",
|
|
title: "Content Creation",
|
|
items: [
|
|
"블로그 콘텐츠 생성",
|
|
"SEO 콘텐츠 생성",
|
|
"SNS 콘텐츠 생성",
|
|
"마케팅 카피 생성",
|
|
"Human-in-the loop 프로세스",
|
|
],
|
|
highlight: "고품질 맞춤형 콘텐츠 자동화",
|
|
},
|
|
{
|
|
step: "3",
|
|
title: "Video Automation",
|
|
items: [
|
|
"블로그 → 영상 변환",
|
|
"숏폼 콘텐츠 생성",
|
|
"유튜브 콘텐츠 제작",
|
|
"SNS 영상 제작",
|
|
"멀티모달 AI 엔진: 영상 + 음악 + 카피",
|
|
],
|
|
highlight: "원클릭 영상 제작 시스템",
|
|
},
|
|
{
|
|
step: "4",
|
|
title: "Distribution Engine",
|
|
items: [
|
|
"블로그 게시",
|
|
"SNS 자동 게시",
|
|
"유튜브 업로드",
|
|
"콘텐츠 일정 관리",
|
|
"SEO, AEO 자동 최적화",
|
|
],
|
|
highlight: "전 채널 통합 배포 및 최적화",
|
|
},
|
|
{
|
|
step: "5",
|
|
title: "Performance Intelligence",
|
|
items: [
|
|
"SEO 성과 분석",
|
|
"콘텐츠 성과 분석",
|
|
"채널 성과 분석",
|
|
"AI 콘텐츠 개선 전략 추천",
|
|
"데이터 기반 효과 검증",
|
|
],
|
|
highlight: "실시간 성과 추적 및 개선",
|
|
},
|
|
];
|
|
|
|
export const MODULE_CARD_STAGGER = [
|
|
"",
|
|
"animation-delay-100",
|
|
"animation-delay-200",
|
|
"animation-delay-300",
|
|
"animation-delay-400",
|
|
] as const;
|