diff options
-rw-r--r-- | app/webring/page.tsx | 29 | ||||
-rw-r--r-- | components/layout/Header.tsx | 3 |
2 files changed, 31 insertions, 1 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"><- Previous</a> + <a style={{ textDecoration: 'none' }} target="_blank" href="https://webring.umbreon.online/next?from=https://tempest.dev">Next -></a> + </div> + </main> + </> + ) +} diff --git a/components/layout/Header.tsx b/components/layout/Header.tsx index 23ba4b2..6fa16ff 100644 --- a/components/layout/Header.tsx +++ b/components/layout/Header.tsx @@ -20,8 +20,9 @@ export default function Title() { } <nav> <a href="/about">about</a> - <a href="/posts">posts</a> + {/* <a href="/posts">posts</a> */} <a href="/contact">contact</a> + <a href="/webring">webring</a> </nav> <div className="headerBackground"> <Image |