diff options
author | 2021-09-09 11:49:37 -0700 | |
---|---|---|
committer | 2021-09-09 11:49:37 -0700 | |
commit | 224b51e4603be7cc39ff0f598d90025497f513fc (patch) | |
tree | ed8d85780b34c3f32198395beaa1cad3101fcd08 /www/src/components/BlogHead.astro | |
parent | 2847ff538280c97df2992dae72af20f19b083b67 (diff) | |
download | astro-224b51e4603be7cc39ff0f598d90025497f513fc.tar.gz astro-224b51e4603be7cc39ff0f598d90025497f513fc.tar.zst astro-224b51e4603be7cc39ff0f598d90025497f513fc.zip |
blog: announce netlify sponsorship (#1345)
Diffstat (limited to 'www/src/components/BlogHead.astro')
-rw-r--r-- | www/src/components/BlogHead.astro | 4 |
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 |