'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; type NavItem = { href: string; label: string; }; const navItems: NavItem[] = [ { href: '/', label: '首頁' }, { href: '/daily-card', label: '作戰' }, { href: '/live-score', label: '比分' }, { href: '/schedule', label: '賽程' }, { href: '/source-health', label: '健康' }, ]; export function MobileBottomNav() { const path = usePathname() || '/'; return ( ); }