'use client'; import { StaticLink } from '@/components/ui/static-link'; import { Button } from '@/components/ui/button'; import { PageNav } from '@/components/layout/page-nav'; import { CheckCircle2, TrendingUp, Target, Clock, MessageCircle, ArrowRight, } from 'lucide-react'; import { SERVICES } from '@/lib/constants'; interface ServiceDetailClientProps { service: typeof SERVICES[number]; } const challenges: Record = { software: [ { title: '需求不明确', description: '业务部门提不出清晰需求,开发团队反复返工' }, { title: '技术选型困难', description: '技术栈更新快,不知道该选什么技术方案' }, { title: '项目延期', description: '开发进度难以把控,上线时间一拖再拖' }, { title: '维护成本高', description: '系统上线后问题不断,运维压力巨大' }, ], data: [ { title: '数据孤岛', description: '各系统数据分散,无法整合分析' }, { title: '决策盲区', description: '缺乏数据支撑,决策凭感觉' }, { title: '报表滞后', description: '手工制作报表,时效性差' }, { title: '价值难挖', description: '数据很多,但不知道怎么用' }, ], consulting: [ { title: '方向不明', description: '数字化转型不知道从哪里入手' }, { title: '技术债务', description: '历史系统包袱重,新技术难以引入' }, { title: '人才短缺', description: '缺乏专业的技术规划和架构人才' }, { title: '投入浪费', description: 'IT投入不少,但看不到明显效果' }, ], solutions: [ { title: '行业壁垒', description: '不了解行业最佳实践,走弯路' }, { title: '方案碎片化', description: '各系统各自为政,无法协同' }, { title: '实施风险', description: '大型项目实施失败率高' }, { title: '效果难量化', description: '投入产出比不清晰,难以评估' }, ], }; const outcomes: Record = { software: [ { value: '30%+', label: '预期开发效率提升' }, { value: '50%+', label: '预期返工率降低' }, { value: '严格', label: '交付质量把控' }, ], data: [ { value: '实时', label: '数据更新' }, { value: '自助式', label: '分析模式' }, { value: '多维度', label: '可视化报表' }, ], consulting: [ { value: '清晰', label: '转型方向规划' }, { value: '系统化', label: '技术选型评估' }, { value: '可落地', label: '实施路径设计' }, ], solutions: [ { value: '标准化', label: '行业方案交付' }, { value: '端到端', label: '全流程实施' }, { value: '持续化', label: '运维优化支持' }, ], }; export function ServiceDetailClient({ service }: ServiceDetailClientProps) { const serviceChallenges = challenges[service.id] ?? []; const serviceOutcomes = outcomes[service.id] ?? []; return (

Services

{service.title}

{service.description}

您可能面临的挑战

{serviceChallenges.map((challenge, index) => (

{challenge.title}

{challenge.description}

))}

我们如何帮助您

{service.overview}

{service.features.map((feature, index) => (
{feature}
))}

服务流程

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

{step}

))}

您将获得的改变

{serviceOutcomes.map((outcome, index) => (
{outcome.value}
{outcome.label}
))}

{service.benefits.join(';')}

); }