- {/* Title */}
-
CASTAD
+ {/* Animated background orbs */}
+
+ {/* Background blur overlay */}
+
+
+
+ {/* Logo Image */}
+

- {/* Subtitle */}
-
- Marketing Automation for Location Based Business
-
{/* Input Form */}
-
{
- setUrl(e.target.value);
- if (localError) setLocalError('');
- }}
- placeholder="URL 입력"
- className={`hero-input ${error ? 'error' : ''}`}
- />
+
URL 입력
+
+ {
+ setUrl(e.target.value);
+ if (localError) setLocalError('');
+ }}
+ placeholder="https://www.castad.com"
+ className={`hero-input ${error ? 'error' : ''}`}
+ />
+
+
URL에서 가져온 정보로 영상이 자동 생성됩니다.
{error && (
{error}
)}
{/* Footer Indicator */}
diff --git a/src/pages/Landing/WelcomeSection.tsx b/src/pages/Landing/WelcomeSection.tsx
index c8201e5..9efe40c 100755
--- a/src/pages/Landing/WelcomeSection.tsx
+++ b/src/pages/Landing/WelcomeSection.tsx
@@ -1,66 +1,65 @@
import React from 'react';
-import Header from '../../components/Header';
interface WelcomeSectionProps {
onStartClick?: () => void;
onNext?: () => void;
}
-const WelcomeSection: React.FC
= ({ onStartClick, onNext }) => {
+const WelcomeSection: React.FC = () => {
const features = [
{
id: 1,
title: '비즈니스 핵심 정보 분석',
description: '홈페이지, 네이버 지도, 블로그 등의\nURL을 입력하세요',
- icon: '/assets/images/icon-analysis.svg',
- iconBg: '#9BCACC'
+ iconBg: '#9BCACC',
+ icon: '/assets/images/icon-analysis.svg'
},
{
id: 2,
title: '홍보 콘텐츠 자동 제작',
description: '분석된 정보를 바탕으로\n비즈니스에 맞는 음악, 자막, 노래, 영상을\n자동으로 제작해요',
- icon: '/assets/images/icon-content.svg',
- iconBg: '#DFC7FD'
+ iconBg: '#DFC7FD',
+ icon: '/assets/images/icon-content.svg'
},
{
id: 3,
title: '멀티채널 자동 배포',
description: '완성된 영상은 다운로드하거나\n바로 SNS에 업로드 할 수 있어요',
- icon: '/assets/images/icon-deploy.svg',
- iconBg: '#D4FDF3'
+ iconBg: '#D4FDF3',
+ icon: '/assets/images/icon-deploy.svg'
},
];
return (
-
+
+ {/* Star Icon - Top Center */}
+
+

+
-
+ {/* Header */}
-
-

-
CASTAD에 오신 것을 환영합니다.
분석, 제작, 배포까지 콘텐츠 마케팅의 전과정을 자동화
+ {/* Feature Cards */}
{features.map((feature) => (
-
-
{feature.id}
-
{feature.title}
-
-

+
+
+ {feature.id}
-
{feature.description}
+
{feature.title}
+
+

+
+
{feature.description}
))}
-
-
);