summaryrefslogtreecommitdiff
path: root/www/src/components/BlogHead.astro
diff options
context:
space:
mode:
Diffstat (limited to 'www/src/components/BlogHead.astro')
-rw-r--r--www/src/components/BlogHead.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/src/components/BlogHead.astro b/www/src/components/BlogHead.astro
index 1fa671f97..6b859314d 100644
--- a/www/src/components/BlogHead.astro
+++ b/www/src/components/BlogHead.astro
@@ -1,7 +1,7 @@
---
import BaseHead from './BaseHead.astro';
-const { title, description, canonicalURL } = Astro.props;
+const { title, description, image, canonicalURL } = Astro.props;
---
-<BaseHead title={title} description={description} canonicalURL={canonicalURL} />
+<BaseHead title={title} description={description} image={image} canonicalURL={canonicalURL} />
<link rel="stylesheet" href={Astro.resolve('../scss/blog.css')} /> \ No newline at end of file