'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { Home, Database, Users, Bot } from 'lucide-react' import { cn } from '@/lib/utils' const NAV_ITEMS = [ { href: '/', label: '首页', icon: Home }, { href: '/data-platform', label: '数据中台', icon: Database }, { href: '/user-portrait', label: '画像', icon: Users }, { href: '/ai-assistant', label: 'AI智能助手', icon: Bot }, ] as const export default function BottomNav() { const pathname = usePathname() return ( ) }