diff --git a/src/pages/stores/[slug].astro b/src/pages/stores/[slug].astro
index 6cbb96e..1023c7a 100644
--- a/src/pages/stores/[slug].astro
+++ b/src/pages/stores/[slug].astro
@@ -49,6 +49,7 @@ const store: { data: Store } = stores.find(
title: `Markkët Store | ${store?.data?.title}`,
description: store?.data?.SEO?.metaDescription || store?.data?.Description,
url: `/stores/${store?.data?.slug}`,
+ image: store?.data?.SEO?.socialImage?.formats?.medium?.url,
}}
>
@@ -58,7 +59,7 @@ const store: { data: Store } = stores.find(
{
store?.data?.SEO?.socialImage && (
)