summaryrefslogtreecommitdiff
path: root/src/layouts/Base.astro
blob: a8aa63e619f8b1885f7fc28c362c390e1d8cd179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
import Head from "@components/Head.astro";
import Footer from "@components/Footer.astro";
import Nav from "@components/Nav.astro";

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

<!DOCTYPE html>
<html lang="en">
	<Head title={title} description={description} />

	<body class="bg-base">
		<Nav />
		<slot />
		<Footer />
	</body>
</html>