--- import NavBar from "../components/NavBar.astro"; import Head, { type Props as HeadProps } from "./Head.astro"; type Props = { navbar?: boolean; } & HeadProps; --- {(Astro.props.navbar ?? true) ? : null}