"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const navLinks = [ { label: "WORK", href: "#work" }, { label: "CAPABILITIES", href: "#capabilities" }, { label: "FIELD NOTES", href: "/blog/" }, { label: "CONTACT", href: "#contact" }, ]; function openCommandPalette() { window.dispatchEvent(new CustomEvent("blacksite:palette")); } export function PortfolioNav() { const pathname = usePathname(); return ( ); }