"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { Home, Database, Target, BrainCircuit } from "lucide-react" // 引入AI智能助手图标 const navItems = [ { href: "/", icon: Home, label: "概览" }, { href: "/data-platform", icon: Database, label: "数据中台" }, { href: "/user-portrait", icon: Target, label: "用户画像" }, // 整合用户池功能 { href: "/ai-assistant", icon: BrainCircuit, label: "AI助手" }, // 新增AI智能助手 ] export default function BottomNav() { const pathname = usePathname() return ( ) }