summaryrefslogtreecommitdiff
path: root/website/src/layouts/Page.astro
blob: d41e58c5b91c8a231e17f0a02d9c11c91bac5287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
import BaseHead from "../components/BaseHead.astro";
import Navbar from "../components/Navbar.astro";

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

<!DOCTYPE html>
<html lang="en-GB">
	<head>
		<BaseHead title={title} description={description} />
	</head>

	<body>
		<Navbar />
		<main>
			<slot />
		</main>
	</body>
</html>