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