'use client'; import { motion } from 'framer-motion'; import { CheckCircle2, Zap, Clock, Users, Award, TrendingUp, type LucideIcon, } from 'lucide-react'; import { TiltCard, InkGlowCard } from './micro-interactions'; import { SectionHeader, InkDivider } from './brand-elements'; import type { Service } from '@/lib/constants/services'; interface ServiceValueSectionProps { service: Service; } export function ServiceValueSection({ service }: ServiceValueSectionProps) { const icons: LucideIcon[] = [Zap, Clock, Users, Award, TrendingUp]; return (

核心能力

我们提供的服务特色

{service.features.map((feature, index) => { const Icon = icons[index % icons.length]!; return (

{feature.split(':')[1] || feature}

); })}

服务优势

选择我们的理由

{service.benefits.map((benefit, index) => (

{benefit}

))}
{service.process && service.process.length > 0 && (

服务流程

标准化流程保障服务质量

{service.process.map((step, index) => (

{step.split(':')[0]}

{step.split(':')[1] || step}

))}
)}
); }