---
const nav = [
{ href: "/ueber-uns", label: "Über uns" },
{ href: "/was-wir-tun", label: "Was wir tun" },
{ href: "/projekte", label: "Projekte" },
{ href: "/aktuelles", label: "Aktuelles" },
{ href: "/unterstuetzen", label: "Unterstützen" },
];
const pathname = Astro.url.pathname;
const isActive = (href: string) => pathname === href || pathname.startsWith(href + "/");
---