add a header and some styling

This commit is contained in:
2026-01-14 23:04:02 +13:00
parent e71acd2ce1
commit fc7cd5a60a
4 changed files with 8 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
---
import Head from "./head.astro";
import Navbar from "./navbar.astro"
const {
title = "Memento"
@@ -13,6 +14,8 @@ const {
/>
<body>
<Navbar />
<slot />
</body>
</html>

View File

@@ -0,0 +1,3 @@
<div class="flex w-full h-14 px-2 rounded-xl mb-4 bg-blue-400/40 place-items-center">
<p class="font-bold">Memento</p>
</div>