'use client'; import { SERVICES } from '@/lib/constants'; import { StaticLink } from '@/components/ui/static-link'; import { Button } from '@/components/ui/button'; import { ArrowRight, ArrowUpRight } from 'lucide-react'; import { motion } from 'framer-motion'; import { useReducedMotion } from '@/hooks/use-reduced-motion'; import { PageNav } from '@/components/layout/page-nav'; export default function ServicesPage() { const shouldReduceMotion = useReducedMotion(); const fadeUp = shouldReduceMotion ? {} : { initial: { opacity: 0, y: 20 } }; return (

Services

服务

专业技术团队,为您提供全方位的数字化解决方案

{SERVICES.map((service, index) => (
{String(index + 1).padStart(2, '0')}

{service.title}

{service.description}

{service.features.slice(0, 3).map((feature, idx) => ( {feature.split(':')[0]} ))}
))}

准备开始您的数字化转型之旅?

让我们与您同行,共创美好未来

); }