19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
---
|
|
import "@/styles/global.css";
|
|
|
|
import BaseHead from "@/components/BaseHead.astro";
|
|
import Footer from "@/components/Footer.astro";
|
|
---
|
|
|
|
<html lang="en">
|
|
<BaseHead>
|
|
<slot name="head" />
|
|
</BaseHead>
|
|
<body class="mx-auto min-h-screen max-w-xs p-3 font-mono sm:p-6">
|
|
<main>
|
|
<slot />
|
|
</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|