"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { UsersIcon, CpuIcon, Gamepad2Icon } from "lucide-react" const adminNavItems = [ { href: "/admin/users", label: "Users", icon: UsersIcon }, { href: "/admin/hardware", label: "Hardware", icon: CpuIcon }, { href: "/admin/games", label: "Games", icon: Gamepad2Icon }, ] export function AdminSidebar() { const pathname = usePathname() return ( ) }