aboutsummaryrefslogtreecommitdiff
path: root/www/src/components/BlogHead.astro
blob: 866929725d76f81bc3c8d0891d47e8ec6a63c2ee (plain) (blame)
1
2
3
4
5
6
7
---
import BaseHead from './BaseHead.astro';

const { title, description, permalink } = Astro.props;
---
<BaseHead title={title} description={description} permalink={permalink} />
<link rel="stylesheet" href="/blog.css" />