'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { Chrome as Home, Target, BookOpen, ShoppingBag } from 'lucide-react'; export default function MobileNav() { const pathname = usePathname(); const navItems = [ { href: '/dashboard', icon: Home, label: 'Главная' }, { href: '/missions', icon: Target, label: 'Миссии' }, { href: '/journal', icon: BookOpen, label: 'Журнал' }, { href: '/store', icon: ShoppingBag, label: 'Магазин' }, ]; return ( ); }