import Link from 'next/link' import type { ReactNode } from 'react' import { Users, FileText, ShoppingBag, UserRound } from 'lucide-react' import { Button } from '@/components/ui/button' import { Badge } from '@/components/ui/badge' const navItems = [ { label: 'Kullanıcılar', href: '/admin/users', icon: Users, disabled: false, }, { label: 'Profilim', href: '/admin/profile', icon: UserRound, disabled: false, }, { label: 'Posts', href: '#', icon: FileText, disabled: true, }, { label: 'Shop', href: '#', icon: ShoppingBag, disabled: true, }, ] export default function AdminLayout({ children }: { children: ReactNode }) { return (