summaryrefslogtreecommitdiff
path: root/src/layouts/Base.astro
blob: 2e5b480653d31ec213628d458c2c7959842a289e (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 Nav from "@components/Nav.astro";
// import Footer from "@components/Footer.astro";
import "@styles/global.sass";
const { title, description } = Astro.props;
---

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

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