import { Link, useLocation } from 'react-router'; import { LayoutDashboard, ShoppingBag, Star, Users, FileText } from 'lucide-react'; const navItems = [ { path: '/admin', label: 'Dashboard', icon: LayoutDashboard }, { path: '/admin/orders', label: 'Заказы', icon: ShoppingBag }, { path: '/admin/reviews', label: 'Отзывы', icon: Star }, { path: '/admin/users', label: 'Пользователи', icon: Users }, { path: '/admin/info', label: 'Информация', icon: FileText } ]; export function AdminSidebar() { const location = useLocation(); return ( ); }