'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { Plane } from 'lucide-react'; import { useLanguage } from '@/lib/i18n/LanguageContext'; export default function Footer() { const pathname = usePathname(); const { t } = useLanguage(); const currentYear = new Date().getFullYear(); // 后台管理页面隐藏 Footer if (pathname?.startsWith('/admin')) { return null; } return ( ); }