aboutsummaryrefslogtreecommitdiff
path: root/web/src/layouts/Head.astro
blob: 2732105853399d377cdbfa52439cd98e30ac6c9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
export type Props = {
	title: string
}
---
<head lang="en">
	<meta charset="utf-8"/>
	<link rel="icon" type="image/svg+xml" href="/favicon.svg"/>
	<meta name="viewport" content="width=device-width"/>
	<meta name="generator" content={Astro.generator}/>
	<title>{Astro.props.title}</title>
</head>