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

@@ -0,0 +1,29 @@
---
const links = [
{
text: "src",
href: "https://github.com/breadone/breadone.net"
},
{
text: "bsky",
href: "https://bsky.app/profile/breadone.xyz"
},
{
text: "email",
href: "mailto:contact@breadone.net"
},
]
---
<footer class="text-xl mt-auto">
{
links.map(l => (
<a
class="ps-2"
href={l.href}
>
{l.text}
</a>
))
}
</footer>