This repository has been archived on 2025-12-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BreadnetV3/web/src/components/sidebar.astro

12 lines
234 B
Plaintext

---
import Navbar from "src/components/index/navbar.astro"
import Footer from "./footer.astro"
---
<div>
<a href="/" class="b1-no-underline text-4xl">breadone dot net</a>
<Navbar/>
<div class="mt-8"/>
<slot/>
</div>