summary refs log tree commit diff
path: root/components/layout/Footer.tsx
blob: f4917b7400930367cca75f22d4d4cd6b4f96a350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
  )
}