--- import "../css/index.css"; const pathname = Astro.url.pathname; const isActive = (href: string) => href === "/" ? pathname === "/" : pathname.startsWith(href); const navLinks = [ { label: "home", href: "/" }, { label: "glorpify", href: "/glorpify" }, ]; const hydratedLinks = navLinks.map((link) => ({ ...link, isActive: isActive(link.href), })); ---