'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { LayoutDashboard, Package, Settings, Tags, Users2 } from 'lucide-react' const navItems = [ { href: '/admin', icon: LayoutDashboard, label: 'Dashboard' }, { href: '/admin/categories', icon: Tags, label: 'Kategoriler' }, { href: '/admin/products', icon: Package, label: 'Ürünler' }, { href: '/admin/users', icon: Users2, label: 'Kullanıcılar' }, { href: '/admin/settings', icon: Settings, label: 'Ayarlar' }, ] export function Sidebar() { const pathname = usePathname() return ( ) }