"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { LayoutDashboard, Users, Activity, Settings, Languages, ChevronLeft, Shield, } from "lucide-react" import { cn } from "@/lib/utils" import { Badge } from "@/components/ui/badge" import { Separator } from "@/components/ui/separator" import { Button } from "@/components/ui/button" const navItems = [ { label: "System Overview", href: "/admin", icon: LayoutDashboard }, { label: "User Management", href: "/admin", icon: Users }, { label: "Provider Status", href: "/admin", icon: Activity }, { label: "Settings", href: "/admin/settings", icon: Settings }, ] export function AdminSidebar() { const pathname = usePathname() return ( ) }