"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const NAV_ITEMS = [ { href: "/admin/home", label: "Home" }, { href: "/admin/unlock", label: "Unlock User" }, { href: "/admin/extraction", label: "Extract Game Files" }, ]; const AdminSubNavigation = () => { const pathname = usePathname(); return ( ); }; export default AdminSubNavigation;