import { useState } from 'react'; import { useNavigate } from 'react-router'; import { motion } from 'motion/react'; import { ArrowRight } from 'lucide-react'; import { PrismFilled } from './icons/FilledIcons'; export default function Hero() { const [url, setUrl] = useState(''); const navigate = useNavigate(); const handleAnalyze = () => { if (url.trim()) navigate('/report/loading', { state: { url } }); }; return (
{/* Background Gradient */}
Agentic AI Marketing Automation for Premium Medical Business & Marketing Agency Infinite Growth
Marketing Engine.
Marketing that learns, improves, and accelerates — automatically.
쓸수록 더 정교해지는 AI 마케팅 엔진. 콘텐츠 기획, 생성, 영상 제작, 채널 배포, 데이터 분석까지 하나로.
setUrl(e.target.value)} onKeyDown={(e) => e.key === 'Enter' && handleAnalyze()} className="w-full px-8 py-5 text-base font-medium bg-white/80 backdrop-blur-sm border border-slate-200 rounded-2xl focus:outline-none focus:ring-2 focus:ring-accent/20 focus:border-accent/40 shadow-sm text-center text-primary-900 placeholder:text-slate-400 transition-all group-hover:border-slate-300" />

네이버 블로그, 플레이스, 소셜미디어 등 Online Presence 종합 분석 리포트를 제공합니다.

{/* Decorative elements */}
); }