'use client'; import { motion } from 'framer-motion'; import { useInView } from 'framer-motion'; import { useRef } from 'react'; import dynamic from 'next/dynamic'; import { StaticLink } from '@/components/ui/static-link'; import { Button } from '@/components/ui/button'; import { PageHeader } from '@/components/ui/page-header'; import { ArrowRight } from 'lucide-react'; import { MethodologySection } from '@/components/sections/methodology-section'; import { SOLUTIONS } from '@/lib/constants/solutions'; import { FadeUp } from '@/lib/animations'; const ConsultingSection = dynamic( () => import('@/components/solutions/consulting-section').then(mod => ({ default: mod.ConsultingSection })), { ssr: false } ); const TechSolutionSection = dynamic( () => import('@/components/solutions/tech-solution-section').then(mod => ({ default: mod.TechSolutionSection })), { ssr: false } ); const AccompanySection = dynamic( () => import('@/components/solutions/accompany-section').then(mod => ({ default: mod.AccompanySection })), { ssr: false } ); export default function SolutionsPage() { const contentRef = useRef(null); const isContentInView = useInView(contentRef, { once: true, margin: '-100px' }); return (
{/* 行业解决方案入口 */}

行业解决方案

针对不同行业的数字化痛点,提供定制化解决方案

{SOLUTIONS.map((solution, index) => (
{solution.industry}

{solution.title}

{solution.description}

查看方案
))}

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

无论您处于哪个阶段,我们都能为您提供合适的解决方案

); }