import Link from "next/link"; import { LayoutDashboard, MapPin, Globe, Tags } from "lucide-react"; const AdminSidebar = () => { const menuItems = [ { title: "Панель управления", href: "/admin", icon: LayoutDashboard }, { title: "Категории", href: "/admin/categories", icon: Tags }, { title: "Города", href: "/admin/cities", icon: MapPin }, { title: "Страны", href: "/admin/countries", icon: Globe } ]; return (