summary refs log tree commit diff
path: root/app/webring/page.tsx
blob: 900d7ce6e3dc8f2d60cd461c4edbcbe30669626a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import InfoBar from "~/components/InfoBar/"

export default function Webring() {
  return (

    <>
      <h1 className="pageTitle">
        Webring
      </h1>
      <main className="mainColumn">
        <InfoBar>
          Because we have many good friends
        </InfoBar>
        <p>
          This site is part of the umbreon.online webring, which is run by one of our partners.
        </p>
        <p>
          You can find more information about this at the website{' '}
          <a target="_blank" href="https://webring.umbreon.online">webring.umbreon.online</a>,
          or you can visit our immediate neighbor sites here:
        </p>
        <div style={{ display: 'flex', justifyContent: 'space-around' }}>
          <a style={{ textDecoration: 'none' }} target="_blank" href="https://webring.umbreon.online/prev?from=https://tempest.dev">&lt;- Previous</a>
          <a style={{ textDecoration: 'none' }} target="_blank" href="https://webring.umbreon.online/next?from=https://tempest.dev">Next -&gt;</a>
        </div>
      </main>
    </>
  )
}