--- const { pathname } = Astro.url const routes = [ { name: 'About', href: '/about' }, { name: 'Projects', href: '/projects' }, { name: 'Blog', href: '/blog' }, { name: 'Rest', href: '/rest' }, ] --- NB { routes.map(({ href, name }) => ( {name} )) }