summaryrefslogtreecommitdiff
path: root/www/src/components/BlogHead.astro
blob: 6b859314de254a8682f787ea3f2a5eaf40693299 (plain) (blame)
1
2
3
4
5
6
7
---
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.css')} />