---
import Head from "../components/Head.astro";
import Header from "../components/Header.astro";
---

<html>
	<Head />

	<body>
		<Header />
		<article>
			<slot />
		</article>
	</body>
</html>