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/footer.astro

35 lines
703 B
Plaintext

---
const links = [
{
txt: "src",
lnk: "https://github.com/breadone/breadone.net"
},
{
txt: "bsky",
lnk: "https://bsky.app/profile/breadone.xyz"
},
{
txt: "email",
lnk: "mailto:contact@breadone.net"
},
// {
// txt: "about",
// lnk: "/about"
// },
// {
// txt: "copyright",
// lnk: "/copyright"
// }
]
---
<footer class="text-lg mt-auto">
{
links.map((l, i) => (
<>
<a class="b1-no-underline" href={l.lnk}>{l.txt}</a>
{i < links.length - 1 && <span class="text-(--accent)"> | </span>}
</>
))
}
</footer>