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

const { frontmatter } = Astro.props;
---

<!doctype html>
<html lang="en">
	<Head title={frontmatter.title} description={frontmatter.description} />
	<body
		class="bg-base text-text p-5 lg:p-0 text-md md:text-lg antialiased max-w-screen-md mx-auto my-10"
	>
		<h1><b>getchoo's website 🚀</b></h1>
		<Nav />
		<slot />
		<Footer />
	</body>
</html>