summary refs log tree commit diff
path: root/app/webring
diff options
context:
space:
mode:
authorAshelyn Rose <git@tempest.dev>2023-07-01 22:22:05 -0600
committerAshelyn Rose <git@tempest.dev>2023-07-01 22:22:05 -0600
commit53e7daffac70865dbd9d619ad578230ebf7eb44a (patch)
tree1e96a02e3a99727de5fee9eb5e8d78470bec7a32 /app/webring
parentad08de6e941cfbae56b4d72d8f9e3b73b2eeb943 (diff)
Replace posts with webring (will be restored to ashen.earth)
Diffstat (limited to 'app/webring')
-rw-r--r--app/webring/page.tsx29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/webring/page.tsx b/app/webring/page.tsx
new file mode 100644
index 0000000..900d7ce
--- /dev/null
+++ b/app/webring/page.tsx
@@ -0,0 +1,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>
+    </>
+  )
+}