1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
--- import BaseHead from "../components/BaseHead.astro"; import Navbar from "../components/Navbar.astro"; const { title, description } = Astro.props; --- <!DOCTYPE html> <html lang="en-GB"> <head> <BaseHead title={title} description={description} /> </head> <body> <Navbar /> <main> <slot /> </main> </body> </html>