Refactoring sidebar and adding footer

This commit is contained in:
2025-11-13 22:12:26 +13:00
parent 2812939ed3
commit b4cf4e88bc
6 changed files with 67 additions and 14 deletions

View File

@@ -1,12 +1,15 @@
---
import Navbar from "src/components/index/navbar.astro"
import Footer from "./footer.astro"
---
<div class="w-[32%] text-center">
<div class="flex flex-col">
<p class="text-4xl">breadone dot net</p>
<Navbar/>
<div class="mt-8"/>
<slot/>
</div>
<div class="w-[32%] py-14 h-screen text-center flex flex-col">
<p class="text-4xl">breadone dot net</p>
<Navbar/>
<!-- Lil spacer -->
<div class="mt-8"/>
<slot/>
<Footer/>
</div>