--- interface NavRoute { path: string; name: string; } const navRoutes: NavRoute[] = [ { path: "/", name: "Home" }, { path: "/about", name: "About me" }, { path: "/work", name: "My work" }, { path: "/contact", name: "Contact" }, ]; const isCurrentRoute = (navRoute: NavRoute) => Astro.url.pathname == navRoute.path; ---