aboutsummaryrefslogtreecommitdiff
path: root/web/src/layouts/Base.astro
blob: 4df9bd2e468f240516e89572824d4f379b7151b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
import NavBar from "../components/NavBar.astro";
import Head, { type Props as HeadProps } from "./Head.astro";
type Props = {
	navbar?: boolean;
} & HeadProps;
---

<html>
	<Head {...Astro.props} />
	<body class="bg-gray-800 text-white">
		{(Astro.props.navbar ?? true) ? <NavBar /> : null}
		<slot />
		<footer></footer>
	</body>
</html>