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

{title}

{description}

平均响应时间 < 2小时 · 7×24小时技术支持 · 无需预付费用
); }