import { useState } from 'react'; import { useNavigate } from 'react-router'; import { motion } from 'motion/react'; import { ArrowRight } from 'lucide-react'; export default function CTA() { const [url, setUrl] = useState(''); const navigate = useNavigate(); const handleAnalyze = () => { if (url.trim()) navigate('/report/loading', { state: { url } }); }; return (
Ready to Transform Your Marketing? URL 하나로 시작하는 완벽한 마케팅 자동화. 지금 바로 무료 진단을 받아보세요. setUrl(e.target.value)} onKeyDown={(e) => e.key === 'Enter' && handleAnalyze()} className="w-full px-8 py-4 text-base font-medium bg-gradient-to-r from-[#fff3eb] via-[#e4cfff] to-[#f5f9ff] border border-white/20 rounded-full focus:outline-none focus:ring-2 focus:ring-white/50 shadow-sm text-center text-primary-900 placeholder:text-primary-900/60" />

네이버 블로그, 플레이스, 소셜미디어 종합 분석 리포트 받아보기

); }