Live video on the AT Protocol
fork

Configure Feed

Select the types of activity you want to include in your feed.

add "back to home" that respects the url thingy

+23 -1
+1 -1
js/docs/astro.config.mjs
··· 47 47 ]), 48 48 ], 49 49 sidebar: [ 50 - { label: "← Back to Streamplace", link: "https://stream.place" }, 50 + { label: "← Back to Streamplace", link: "/back-to-home" }, 51 51 { 52 52 label: "How Streamplace Works (Blog)", 53 53 link: "https://blog.stream.place/",
+22
js/docs/src/pages/back-to-home.astro
··· 1 + --- 2 + import "../styles/custom-font-face.css" 3 + import "@fontsource/atkinson-hyperlegible-next/400.css" 4 + import "@fontsource/atkinson-hyperlegible-next/600.css" 5 + --- 6 + <style> 7 + * { 8 + font-family: "Atkinson Hyperlegible Next"; 9 + } 10 + </style> 11 + 12 + <script is:inline> 13 + let hostname = window.location.host 14 + const redirectUrl = hostname.endsWith('.stream.place') 15 + ? 'https://stream.place' 16 + : '/'; 17 + window.location.href = redirectUrl; 18 + </script> 19 + <body style="display: flex; color: white; justify-content: center; align-items: center; height: 100vh; background-color: #181818; flex: 1; flex-direction: column;"> 20 + <h1>Redirecting to Streamplace...</h1> 21 + <a href="https://stream.place" style="color: lightskyblue">Click here if you are not redirected automatically</a> 22 + </body>