'use client'; import Link from 'next/link'; import Logo from './Logo'; import { contactConfig } from '../../lib/useContact'; interface FooterProps { translations: any; } export default function Footer({ translations }: FooterProps) { const t = translations; // Default footer sections if not provided const defaultSections = [ { title: '目录', items: ['首页', '产品与服务', '新闻资讯', '客户支持', '关于我们'], }, { title: '热门产品', items: ['轻量云服务器', '站群服务器', 'EC2服务器', '高防服务器', 'S3云存储'], }, { title: '客户支持', items: ['技术支持', '在线客服', '帮助文档', '服务状态'], }, { title: '公司信息', items: ['关于我们', '联系我们', '隐私政策', '服务条款'], }, ]; const sections = t?.footer?.sections || defaultSections; return ( ); }