summaryrefslogtreecommitdiff
path: root/src/components/Head.astro
blob: f2f7835ecd43503d42db011b4796fb14f95d828e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
import "@fontsource-variable/noto-sans";
import "@fontsource/noto-sans-mono";
const { title, description } = Astro.props;
---

<head>
	<meta charset="UTF-8" />
	<title>{title}</title>
	<meta name="viewport" content="width=device-width,initial-scale=1" />
	<meta name="description" content={description} />
	<link rel="sitemap" href="/sitemap-index.xm" />
</head>
<style is:global>
	a {
		text-decoration: underline;
		@apply text-blue;
	}

	h1 {
		@apply text-3xl md:text-4xl;
	}
</style>