import { useLocation, Link } from 'react-router-dom'; import { Home, Search, Layers, MessageSquare, User } from 'lucide-react'; import { cn } from '@/lib/utils'; const navItems = [ { id: 'home', label: 'Home', icon: Home, path: '/dashboard' }, { id: 'search', label: 'Search', icon: Search, path: '/search' }, { id: 'library', label: 'Library', icon: Layers, path: '/library' }, { id: 'chat', label: 'Chat', icon: MessageSquare, path: '/chat' }, { id: 'profile', label: 'Profile', icon: User, path: '/settings' }, ]; export function MobileBottomNav() { const location = useLocation(); return ( ); }