"use client"; import { usePathname } from "next/navigation"; const LINKS: { href: string; label: string }[] = [ { href: "/", label: "The Floor" }, { href: "/library", label: "Library" }, { href: "/artists", label: "Artists" }, { href: "/discover", label: "Discover" }, { href: "/wanted", label: "Wanted" }, ]; export function ContentsNav() { const pathname = usePathname(); const active = (href: string) => (href === "/" ? pathname === "/" : pathname.startsWith(href)); return ( ); }