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