diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 591acb7..e6f301b 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -7,9 +7,10 @@ interface Props { title: string; noHeader?: string; description?: string; + image: string; } -const { title, noHeader, description } = Astro.props; +const { title, noHeader, description, image } = Astro.props; --- @@ -22,6 +23,7 @@ const { title, noHeader, description } = Astro.props; content={description ? description : "Astro description"} /> +