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

{currentContent.pricing.title}

{currentContent.pricing.subtitle}

{/* Pricing Cards */}
{currentContent.pricing.plans.map((plan, index) => (
{plan.popular && (
推荐
)}

{plan.name}

{plan.price} {plan.period}

{plan.description}

    {plan.features.map((feature, featureIndex) => (
  • {feature}
  • ))}
))}
{/* FAQ Section */}

常见问题

解答您关心的问题

{[ { question: '如何选择适合的方案?', answer: '我们建议根据您的业务规模、预期流量和技术需求来选择。我们的专业团队可以为您提供免费咨询,帮助您选择最适合的方案。', }, { question: '是否支持方案升级?', answer: '是的,您可以随时升级到更高级的方案。升级过程无缝衔接,不会影响您的业务运行。', }, { question: '技术支持包含哪些内容?', answer: '我们提供7x24小时技术支持,包括系统监控、故障排除、性能优化、安全更新等全方位服务。', }, { question: '数据安全如何保障?', answer: '我们采用AWS企业级安全标准,包括数据加密、访问控制、定期备份、灾难恢复等多重安全保障措施。', }, ].map((faq: { question: string; answer: string }, index: number) => (

{faq.question}

{faq.answer}

))}
); }