1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
--- import NavBar from "../components/NavBar.astro"; import Head, { type Props as HeadProps } from "./Head.astro"; type Props = { navbar?: boolean; } & HeadProps; --- <html> <Head {...Astro.props} /> <body class="bg-gray-800 text-white"> {(Astro.props.navbar ?? true) ? <NavBar /> : null} <slot /> <footer></footer> </body> </html>