diff options
Diffstat (limited to 'www/src/components/BlogHead.astro')
-rw-r--r-- | www/src/components/BlogHead.astro | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/src/components/BlogHead.astro b/www/src/components/BlogHead.astro index 5ce0505f9..50e9ed69e 100644 --- a/www/src/components/BlogHead.astro +++ b/www/src/components/BlogHead.astro @@ -3,5 +3,6 @@ import BaseHead from './BaseHead.astro'; const { title, description, image, canonicalURL } = Astro.props; --- -<BaseHead title={title} description={description} image={image} canonicalURL={canonicalURL} /> -<link rel="stylesheet" href={Astro.resolve('../scss/blog.scss')} />
\ No newline at end of file + +<BaseHead {title} {description} {image} {canonicalURL} /> +<link rel="stylesheet" href={Astro.resolve('../scss/blog.scss')} /> |