import React from 'react'; interface WelcomeSectionProps { onStartClick?: () => void; onNext?: () => void; } const WelcomeSection: React.FC = () => { const features = [ { id: 1, title: '비즈니스 핵심 정보 분석', description: '홈페이지, 네이버 지도, 블로그 등의\nURL을 입력하세요', iconBg: '#9BCACC', icon: '/assets/images/icon-analysis.svg' }, { id: 2, title: '홍보 콘텐츠 자동 제작', description: '분석된 정보를 바탕으로\n비즈니스에 맞는 음악, 자막, 노래, 영상을\n자동으로 제작해요', iconBg: '#DFC7FD', icon: '/assets/images/icon-content.svg' }, { id: 3, title: '멀티채널 자동 배포', description: '완성된 영상은 다운로드하거나\n바로 SNS에 업로드 할 수 있어요', iconBg: '#D4FDF3', icon: '/assets/images/icon-deploy.svg' }, ]; return (
{/* Star Icon - Top Center */}
star
{/* Header */}

ADO2.AI에 오신 것을 환영합니다.

분석, 제작, 배포까지 콘텐츠 마케팅의 전과정을 자동화

{/* Feature Cards */}
{features.map((feature) => (
{feature.id}

{feature.title}

{feature.title}

{feature.description}

))}
); }; export default WelcomeSection;