diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 89f0689..86f278f 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -8,15 +8,16 @@ import { SITE } from "@consts"; type Props = { title: string; description: string; + image?: string; }; -const { title, description } = Astro.props; +const { title, description, image } = Astro.props; --- - +