'use client'; import { useState, useEffect } from 'react'; import { Header } from '../../components/Header'; import { Footer } from '../../components/Footer'; export default function AboutPage() { const [currentLang, setCurrentLang] = useState('zh-CN'); const [isLoading, setIsLoading] = useState(true); useEffect(() => { const detectLanguage = () => { const browserLang = navigator.language || navigator.languages[0]; if (browserLang.startsWith('zh-TW') || browserLang.startsWith('zh-HK')) { setCurrentLang('zh-TW'); } else if (browserLang.startsWith('en')) { setCurrentLang('en'); } else { setCurrentLang('zh-CN'); } setIsLoading(false); }; detectLanguage(); }, []); const content = { 'zh-CN': { title: '关于我们', subtitle: '致力于构建下一代多语言网站解决方案', nav: { home: '首页', docs: '文档', about: '关于', contact: '联系我们', }, mission: { title: '我们的使命', description: 'MultiSite 致力于为全球企业提供最先进的多语言静态网站解决方案,让跨语言沟通变得简单高效。', }, vision: { title: '我们的愿景', description: '成为全球领先的多语言网站技术提供商,帮助企业轻松实现国际化业务拓展。', }, values: { title: '核心价值观', items: [ { title: '创新驱动', description: '持续探索前沿技术,为用户提供最优质的解决方案', }, { title: '用户至上', description: '以用户需求为中心,不断优化产品体验', }, { title: '开放合作', description: '拥抱开源社区,与全球开发者共同成长', }, { title: '品质保证', description: '严格的质量标准,确保产品稳定可靠', }, ], }, team: { title: '团队介绍', description: '我们是一支充满激情的技术团队,专注于多语言网站技术的研发与创新。', members: [ { name: '张伟', role: '技术总监', description: '10年前端开发经验,React/Next.js 技术专家', }, { name: '李娜', role: '产品经理', description: '专注用户体验设计,国际化产品规划专家', }, { name: '王强', role: '架构师', description: '全栈开发工程师,云原生技术专家', }, ], }, technology: { title: '技术优势', items: [ { title: 'React/Next.js', description: '基于最新的 React 18 和 Next.js 14,提供卓越的性能和开发体验', }, { title: '静态生成', description: '利用 SSG 技术,实现极速加载和优秀的 SEO 表现', }, { title: '多语言支持', description: '智能语言检测和切换,支持全球主要语言', }, { title: '响应式设计', description: '完美适配各种设备,提供一致的用户体验', }, ], }, }, 'zh-TW': { title: '關於我們', subtitle: '致力於構建下一代多語言網站解決方案', nav: { home: '首頁', docs: '文檔', about: '關於', contact: '聯繫我們', }, mission: { title: '我們的使命', description: 'MultiSite 致力於為全球企業提供最先進的多語言靜態網站解決方案,讓跨語言溝通變得簡單高效。', }, vision: { title: '我們的願景', description: '成為全球領先的多語言網站技術提供商,幫助企業輕鬆實現國際化業務拓展。', }, values: { title: '核心價值觀', items: [ { title: '創新驅動', description: '持續探索前沿技術,為用戶提供最優質的解決方案', }, { title: '用戶至上', description: '以用戶需求為中心,不斷優化產品體驗', }, { title: '開放合作', description: '擁抱開源社區,與全球開發者共同成長', }, { title: '品質保證', description: '嚴格的質量標準,確保產品穩定可靠', }, ], }, team: { title: '團隊介紹', description: '我們是一支充滿激情的技術團隊,專注於多語言網站技術的研發與創新。', members: [ { name: '張偉', role: '技術總監', description: '10年前端開發經驗,React/Next.js 技術專家', }, { name: '李娜', role: '產品經理', description: '專注用戶體驗設計,國際化產品規劃專家', }, { name: '王強', role: '架構師', description: '全棧開發工程師,雲原生技術專家', }, ], }, technology: { title: '技術優勢', items: [ { title: 'React/Next.js', description: '基於最新的 React 18 和 Next.js 14,提供卓越的性能和開發體驗', }, { title: '靜態生成', description: '利用 SSG 技術,實現極速加載和優秀的 SEO 表現', }, { title: '多語言支援', description: '智能語言檢測和切換,支援全球主要語言', }, { title: '響應式設計', description: '完美適配各種設備,提供一致的用戶體驗', }, ], }, }, en: { title: 'About Us', subtitle: 'Dedicated to building next-generation multi-language website solutions', nav: { home: 'Home', docs: 'Docs', about: 'About', contact: 'Contact', }, mission: { title: 'Our Mission', description: 'MultiSite is dedicated to providing the most advanced multi-language static website solutions for global enterprises, making cross-language communication simple and efficient.', }, vision: { title: 'Our Vision', description: "To become the world's leading multi-language website technology provider, helping enterprises easily achieve international business expansion.", }, values: { title: 'Core Values', items: [ { title: 'Innovation Driven', description: 'Continuously explore cutting-edge technologies to provide users with the best solutions', }, { title: 'User First', description: 'Focus on user needs and continuously optimize product experience', }, { title: 'Open Collaboration', description: 'Embrace the open source community and grow together with global developers', }, { title: 'Quality Assurance', description: 'Strict quality standards to ensure stable and reliable products', }, ], }, team: { title: 'Our Team', description: 'We are a passionate technical team focused on the research and innovation of multi-language website technologies.', members: [ { name: 'Zhang Wei', role: 'Technical Director', description: '10 years of frontend development experience, React/Next.js expert', }, { name: 'Li Na', role: 'Product Manager', description: 'Focus on user experience design, internationalization product planning expert', }, { name: 'Wang Qiang', role: 'Architect', description: 'Full-stack development engineer, cloud-native technology expert', }, ], }, technology: { title: 'Technical Advantages', items: [ { title: 'React/Next.js', description: 'Based on the latest React 18 and Next.js 14, providing excellent performance and development experience', }, { title: 'Static Generation', description: 'Utilizing SSG technology for ultra-fast loading and excellent SEO performance', }, { title: 'Multi-language Support', description: 'Intelligent language detection and switching, supporting major global languages', }, { title: 'Responsive Design', description: 'Perfect adaptation to various devices, providing consistent user experience', }, ], }, }, }; const currentContent = content[currentLang]; if (isLoading) { return (
{currentContent.subtitle}
{currentContent.mission.description}
{currentContent.vision.description}
{value.description}
{currentContent.team.description}
{member.role}
{member.description}
{tech.description}