blob: 5ce0505f98edf01af008116e38bb88544cae071b (
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.scss')} />
|