blob: 1fa671f97ce1df106bd47bb6880a3d1e61b94088 (
plain) (
blame)
1
2
3
4
5
6
7
|
---
import BaseHead from './BaseHead.astro';
const { title, description, canonicalURL } = Astro.props;
---
<BaseHead title={title} description={description} canonicalURL={canonicalURL} />
<link rel="stylesheet" href={Astro.resolve('../scss/blog.css')} />
|