'use client'; import Navigation from '../../../components/Navigation'; import Footer from '../../../components/Footer'; import { useLanguage } from '../../../hooks/useLanguage'; interface SolutionsPageProps { params: { lang: string; }; } export default function SolutionsPage({ params }: SolutionsPageProps) { const { currentLang, setCurrentLang, currentContent, createLocalizedPath } = useLanguage( params.lang, ); return (
{/* Hero Section */}

{currentContent.solutions.title}

{currentContent.solutions.subtitle}

{/* Solutions Grid */}
{currentContent.solutions.items.map((solution, index) => (
{index + 1}

{solution.title}

{solution.description}

{solution.benefits.map((benefit, benefitIndex) => (
{benefit}
))}
))}
{/* Process Section */}

实施流程

专业的实施流程,确保项目成功交付

{[ { title: '需求分析', description: '深入了解客户需求和现状' }, { title: '方案设计', description: '制定详细的技术实施方案' }, { title: '项目实施', description: '按计划执行迁移和部署' }, { title: '运维支持', description: '提供持续的运维和优化' }, ].map((step: { title: string; description: string }, index: number) => (
{index + 1}

{step.title}

{step.description}

))}
); }