import Link from "next/link"; import { cn } from "@/lib/utils"; type PortfolioSubnavProps = { active: "overview" | "categories" | "projects"; }; const items = [ { key: "overview", label: "Overview", href: "/root/portfolio", }, { key: "categories", label: "Categories", href: "/root/portfolio/categories", }, { key: "projects", label: "Projects", href: "/root/portfolio/projects", }, ] as const; export function PortfolioSubnav({ active }: PortfolioSubnavProps) { return (