import Link from 'next/link'; import { Locale } from '@/lib/i18n'; interface FooterProps { locale: Locale; navigation: Array<{ name: string; href: string }>; common: { companyName: string; footer: { quickLinks: string; contactInfo: string; followUs: string; copyright: string; email: string; phone: string; }; }; } export default function Footer({ locale, navigation, common }: FooterProps) { const getCompanyDescription = () => { switch (locale) { case 'zh-CN': return '我们致力于为客户提供专业的AWS云服务解决方案,助力企业数字化转型'; case 'zh-TW': return '我們致力於為客戶提供專業的AWS雲端服務解決方案,助力企業數位化轉型'; case 'en': return 'We are committed to providing professional AWS cloud services solutions to help enterprises with digital transformation'; default: return '我们致力于为客户提供专业的AWS云服务解决方案,助力企业数字化转型'; } }; return ( ); }