"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; export function AdminNav() { const pathname = usePathname(); const links = [ { href: "/admin/dashboard", label: "Dashboard" }, { href: "/admin/analysis-queue", label: "Video Hub" }, { href: "/admin/moderation", label: "Product Hub" }, { href: "/admin/requests", label: "Opportunities Hub" }, { href: "/admin/users", label: "Users" }, ]; return ( ); }