--- const currentPath = Astro.url.pathname; const links = [ { href: "/", label: "home" }, { href: "/about", label: "about" }, { href: "/projects", label: "projects" }, { href: "/now", label: "now" }, { href: "/blog", label: "blog" }, { href: "/guestbook", label: "guestbook" }, ]; function isActive(href: string, current: string): boolean { if (href === "/") return current === "/"; return current.startsWith(href); } ---