--- import "../styles/global.css"; import NavButton from "../components/NavButton.astro"; const { title } = Astro.props; const navButtons = [ { title: "home", route: "/" }, { title: "blog", route: "/blog" }, { title: "github", route: "https://github.com/bigspeedfpv" }, ]; const isHome = Astro.url.pathname === "/"; --- {title ? `${title} - Andrew Brower` : "Andrew Brower"}

{isHome ? "" : Andrew Brower}

{navButtons.map(({title, route}) => )}