import Link from "next/link"; import { AppCard } from "@/components/ui/app-card"; import { CardContent } from "@/components/ui/card"; import { cn } from "@/lib/utils"; type PortfolioSubnavProps = { active: "projects" | "categories"; }; const items = [ { key: "projects", label: "Projekte", href: "/portfolio", }, { key: "categories", label: "Kategorien", href: "/portfolio/categories", }, ] as const; export function PortfolioSubnav({ active }: PortfolioSubnavProps) { return ( {items.map((item) => ( {item.label} ))} ); }