'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { LayoutDashboard, Users, Settings, BedDouble } from 'lucide-react' export const ADMIN_NAVIGATION = [ { name: 'Dashboard', href: '/admin', icon: LayoutDashboard }, { name: 'Odalar', href: '/admin/rooms', icon: BedDouble }, { name: 'Kullanıcılar', href: '/admin/users', icon: Users }, { name: 'Ayarlar', href: '/admin/settings', icon: Settings }, ] export function AdminSidebar() { const pathname = usePathname() return (