You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
564 B
TypeScript

import Link from 'next/link'
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">&lt;</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">&gt;</a>
</span>
<Link href="/pay-transparency">Pay Transparency</Link>
</footer>
)
}