"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { Activity, Building2, ScrollText } from "lucide-react"; import { cn } from "@/lib/utils"; const items = [ { href: "/admin", label: "Kitas", icon: Building2, exact: true, }, { href: "/admin/audit", label: "AuditLog", icon: ScrollText, exact: false, }, ]; export function AdminNav() { const pathname = usePathname(); return ( ); }