"use client" import { cn } from "@/lib/utils" import Link from "next/link" import { usePathname } from "next/navigation" export function HeaderNav() { const pathname = usePathname() const isIconsActive = pathname === "/icons" || pathname.startsWith("/icons/") return ( ) }