"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { LayoutDashboard, Database, Tags, Bot, Package } from "lucide-react" import { cn } from "@/lib/utils" const NAV_ITEMS = [ { href: "/", label: "概览", icon: LayoutDashboard }, { href: "/data-ingestion", label: "数据", icon: Database }, { href: "/tag-portrait", label: "画像", icon: Tags }, { href: "/ai-agent", label: "AI", icon: Bot }, { href: "/data-market", label: "市场", icon: Package }, ] as const export default function BottomNav() { const pathname = usePathname() return ( ) }