"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { LayoutGrid, Trophy, Wallet } from "lucide-react"; import { cn } from "@/lib/utils"; const tabs = [ { href: "/hall", label: "大厅", icon: LayoutGrid, match: (p: string) => p === "/hall" }, { href: "/wallet", label: "钱包", icon: Wallet, match: (p: string) => p === "/wallet" || p.startsWith("/wallet/"), }, { href: "/results", label: "开奖", icon: Trophy, match: (p: string) => p === "/results" || p.startsWith("/results/"), }, ] as const; /** * 移动端 H5 主导航:底部 Tab(界面文档 §1.1 以手机为主)。 */ export function PlayerBottomNav() { const pathname = usePathname() ?? ""; return ( ); }