"use client" import { getServiceById } from "@/config/services" import Link from "next/link" import { ArrowLeft, Mail } from "lucide-react" import { Button } from "@/components/ui/button" import { notFound } from "next/navigation" import type { FC } from "react" interface ServiceDetailPageProps { params: { slug: string } } export const ServiceDetailPageClient: FC = ({ params }) => { const service = getServiceById(params.slug) if (!service) { notFound() } const IconComponent = service.icon return (
{/* Enhanced Glass Header */}
XZ
鑫泽焓界
{/* Service Detail Content */}
{/* Static Light Background */}
{/* Service Header */}
{/* Service Icon */}

{service.name}

{service.category}

{service.description}

{/* Service Details */}
{/* Features */}

服务内容

  • 技术实现
  • 项目交付
  • 技术支持
  • 文档提供
{/* Contact */}

联系咨询

邮箱咨询

zichen.hao@entalnet.com

) }