"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { Home, Users, BarChart3, Database, Settings } from "lucide-react" const navItems = [ { href: "/", icon: Home, label: "首页" }, { href: "/user-portrait", icon: Users, label: "用户画像" }, { href: "/user-value", icon: BarChart3, label: "用户估值" }, { href: "/data-platform", icon: Database, label: "数据中台" }, { href: "/settings", icon: Settings, label: "设置" }, ] export default function BottomNav() { const pathname = usePathname() return ( ) }