"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { LayoutDashboard, Database, Tags, Brain, Monitor } from "lucide-react" import { cn } from "@/lib/utils" const NAV_ITEMS = [ { href: "/", label: "概览", icon: LayoutDashboard }, { href: "/data-governance", label: "数据治理", icon: Database }, { href: "/tag-portrait", label: "标签画像", icon: Tags }, { href: "/ai-insight", label: "AI洞察", icon: Brain }, { href: "/monitoring", label: "监控", icon: Monitor }, ] as const export default function BottomNav() { const pathname = usePathname() return ( ) }