import { useLocation, Link } from 'react-router-dom'; import { Home, Search, Layers, MessageSquare, User } from 'lucide-react'; import { useTranslation } from 'react-i18next'; import { cn } from '@/lib/utils'; const navItems = [ { id: 'home', labelKey: 'nav.items.dashboard', icon: Home, path: '/dashboard' }, { id: 'search', labelKey: 'nav.items.discover', icon: Search, path: '/discover' }, { id: 'library', labelKey: 'nav.items.tracks', icon: Layers, path: '/library' }, { id: 'chat', labelKey: 'nav.items.chat', icon: MessageSquare, path: '/chat' }, { id: 'profile', labelKey: 'nav.settings', icon: User, path: '/settings' }, ]; export function MobileBottomNav() { const location = useLocation(); const { t } = useTranslation(); return ( ); }