'use client'; import { motion } from 'framer-motion'; import { useReducedMotion } from '@/hooks/use-reduced-motion'; import { StaticLink } from '@/components/ui/static-link'; import { Lightbulb, Cpu, Users, } from 'lucide-react'; import { MethodologySection } from '@/components/sections/methodology-section'; import { CTASection } from '@/components/sections/cta-section'; import { BreadcrumbSchema } from '@/components/seo/structured-data'; import { SwipeNavigation } from '@/hooks/use-swipe-gesture'; import { ListPageHeroV3 } from '@/components/detail-v2/list-page-hero-v3'; import { SolutionCardV3 } from '@/components/detail-v2/solution-service-card-v3'; import { SOLUTIONS } from '@/lib/constants/solutions'; export default function SolutionsPage() { const shouldReduceMotion = useReducedMotion(); const fadeUp = shouldReduceMotion ? {} : { initial: { opacity: 0, y: 20 } }; return (
{/* Hero 区域 (V3) */} {/* 行业解决方案网格 */}
{SOLUTIONS.map((solution) => ( ))}
{/* 方案→服务关联推荐 */}

从方案到落地,全程陪伴

我们不仅提供行业解决方案,更通过专业服务确保方案真正落地见效

{[ { icon: Lightbulb, title: '数字化转型咨询', desc: '帮您看清前路,迈对第一步', href: '/services', bgColor: 'rgba(196,30,58,0.06)', color: '#C41E3A' }, { icon: Cpu, title: '信息技术解决方案', desc: '让技术真正为业务服务', href: '/products', bgColor: 'rgba(37,99,235,0.06)', color: '#2563eb' }, { icon: Users, title: '长期陪跑服务', desc: '从需求到落地,持续陪伴', href: '/services', bgColor: 'rgba(22,163,74,0.06)', color: '#16a34a' }, ].map((item, i) => (

{item.title}

{item.desc}

))}
); }