blob: 3ea799074ddaf8bcae7044c4f993245ce4ca1c40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export default function Footer() {
return (
<footer>
<span>Website by ashelyn rose</span>
<span>
<a style={{ textDecoration: 'none' }} href="https://webring.umbreon.online/prev?from=https://tempest.dev"><</a>
<a target="_blank" href="https://webring.umbreon.online/">webring</a>
<a style={{ textDecoration: 'none' }} href="https://webring.umbreon.online/next?from=https://tempest.dev">></a>
</span>
<a href="/pay-transparency">Pay Transparency</a>
</footer>
)
}
|