1 2 3 4 5 6 7 8 9 10 11
--- import Base from "@layouts/Base.astro"; import Gifs from "@components/Gifs.astro"; const { title, description } = Astro.props.frontmatter; --- <Base title={title} description={description}> <slot /> <Gifs slot="extra_footer" /> </Base>