"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const links = [ { href: "/", label: "home" }, { href: "/homelab/", label: "homelab" }, { href: "/archive/", label: "archive" }, ]; export default function Nav() { const pathname = usePathname(); return (
); }