'use client'; import { motion } from 'framer-motion'; import { ArrowRight, MessageCircle, Download } from 'lucide-react'; import type { HeroTheme } from '@/lib/constants/hero-themes'; import { DESIGN_SYSTEM } from '@/lib/constants/design-system'; interface DetailCTASectionV2Props { theme: HeroTheme; title?: string; description?: string; primaryAction: { label: string; href: string }; secondaryAction?: { label: string; href: string }; } export function DetailCTASectionV2({ theme, title = '准备好开始了吗?', description = '联系我们,获取专属方案和报价', primaryAction, secondaryAction, }: DetailCTASectionV2Props) { return (
免费咨询

{title}

{description}

{primaryAction.label}
{secondaryAction && ( {secondaryAction.label} )}
平均响应时间 < 2小时 · 7×24小时技术支持 · 无需预付费用
); }