summaryrefslogtreecommitdiff
path: root/src/components/Head.astro
blob: f05e8629d7f67dcc2a54dac2611f0e0276697679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
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;
	}

	h2 {
		@apply text-2xl md:text-3xl;
	}

	h3 {
		@apply text-xl md:text-2xl;
	}
</style>