/** * 최종 CTA (다크). 연락처는 o2oteam@o2o.kr 단일 채널 (허위 연락처 금지). */ import { motion } from 'motion/react'; import { buildDiscoveryMailto, DISCOVERY_CONTACT_EMAIL } from './discoveryContact'; interface DiscoveryCtaProps { criteriaCount: number; /** CTA 클릭 → URL 입력 신청 모달 열기 */ onStart: () => void; } export default function DiscoveryCta({ criteriaCount, onStart }: DiscoveryCtaProps) { return (

AI가 당신의 병원을 인용하게 하세요.

진단은 무료입니다. {criteriaCount}개 항목 실측 리포트를 받아보고 결정하세요.

{DISCOVERY_CONTACT_EMAIL}
); }