blob: ab5948e6c9b17125a90cbdc41f174b9a9d7b66c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
import Footer from "@components/Footer.astro";
import Head from "@components/Head.astro";
import Nav from "@components/Nav.astro";
const { title, description } = Astro.props.frontmatter || Astro.props;
---
<!doctype html>
<html lang="en">
<Head title={title} description={description} />
<body class="prose lg:prose-xl mx-auto max-w-3/4 lg:max-w-1/2">
<Nav />
<slot />
<Footer />
</body>
</html>
|