"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const navLinks = [ { href: "/projects", label: "projects" }, { href: "/about", label: "about" }, { href: "/uses", label: "uses" }, ]; export default function Nav() { const pathname = usePathname(); return ( ); }