doing basic layout

This commit is contained in:
2025-11-13 18:08:12 +13:00
parent f5dea95cc2
commit 422cfeb94e
9 changed files with 724 additions and 19 deletions

17
web/src/layout/Base.astro Normal file
View File

@@ -0,0 +1,17 @@
---
import BaseHead from "./BaseHead.astro"
---
<html>
<head>
<BaseHead/>
</head>
<body>
<main id="main" class="flex-1">
<slot />
</main>
<!-- <Footer /> -->
</body>
</html>