diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e6f301b5..4365ce23 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -7,7 +7,7 @@ interface Props { title: string; noHeader?: string; description?: string; - image: string; + image?: string; } const { title, noHeader, description, image } = Astro.props;