From 77fb20abe437402d91352490900935702795e549 Mon Sep 17 00:00:00 2001 From: Obsidian Sync Date: Wed, 25 Feb 2026 17:24:55 +0530 Subject: [PATCH] Fix: pass image prop to Layout and Head --- src/layouts/Layout.astro | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; --- - +