add to bucket webring, still have to make a pr over there
All checks were successful
Docker / build (push) Successful in 21s

This commit is contained in:
Robin Bärtschi 2025-02-23 13:18:22 +01:00
parent 8ee3db36fb
commit 9266734a10
2 changed files with 24 additions and 1 deletions

View File

@ -2,7 +2,18 @@ import type { FC } from 'hono/jsx';
export const Footer: FC = () => { export const Footer: FC = () => {
return <footer class="middle-flex"> return <footer class="middle-flex">
&copy; 2025 - Robin Bärtschi <div style="padding-bottom: 0.4em;" class="webring">
<a href="https://webring.bucketfish.me/redirect.html?to=prev&name=robaertschi">&larr; prev</a>
<span class="header-span"></span>
<div class="some-minimal-padding">
<a href="https://webring.bucketfish.me/redirect.html?to=random&name=robaertschi">random</a>
<span class="header-span"></span>
<a href="https://webring.bucketfish.me/">bucket webring</a>
</div>
<span class="header-span"></span>
<a href="https://webring.bucketfish.me/redirect.html?to=next&name=robaertschi">next &rarr;</a>
</div>
<div>&copy; 2025 - Robin Bärtschi</div>
</footer> </footer>
}; };

View File

@ -131,3 +131,15 @@ footer {
border-style: solid; border-style: solid;
width: 80%; width: 80%;
} }
footer a {
padding: 0.5em;
}
.webring {
padding-bottom: 0.4em;
}
.some-minimal-padding {
display: inline;
}