"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { Home, User } from "lucide-react" export function BottomNav() { const pathname = usePathname() // 在文档页面和管理后台不显示底部导航 if (pathname.startsWith("/documentation") || pathname.startsWith("/admin")) { return null } const navItems = [ { href: "/", icon: Home, label: "首页" }, { href: "/match", emoji: "🤝", label: "匹配合作" }, { href: "/my", icon: User, label: "我的" }, ] return ( <> {/* iOS风格底部导航 - 只有3个按钮 */} ) }