aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/BaseLayout.astro
blob: 216287e96a8c8a6c0dab5a085db0336b58ceefc3 (plain) (blame)
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 type { WithContext, Thing } from "schema-dts";
import Analytics from "../components/Analytics.astro";
import Head from "../components/Head.astro";
import Header from "../components/Header.astro";
import "../scss/global.scss";

type Props = {
	readonly description: string;
	readonly title: string;
	readonly lang: string;
	readonly schema: WithContext<Thing>;
};

const { title, description, lang, schema } = Astro.props;
---

<html lang={lang}>
	<Head title={title} description={description} schema={schema} />

	<body>
		<main>
			<section>
				<Header />
			</section>

			<slot />
		</main>
		<Analytics />
	</body>
</html>