add a header and some styling
This commit is contained in:
@@ -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>
|
||||
3
src/component/core/navbar.astro
Normal file
3
src/component/core/navbar.astro
Normal 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>
|
||||
Reference in New Issue
Block a user