Live video on the AT Protocol
79
fork

Configure Feed

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

at eli/com-atproto-sync-getRepo 22 lines 749 B view raw
1--- 2import "../styles/custom-font-face.css" 3import "@fontsource/atkinson-hyperlegible-next/400.css" 4import "@fontsource/atkinson-hyperlegible-next/600.css" 5--- 6<style> 7* { 8 font-family: "Atkinson Hyperlegible Next"; 9} 10</style> 11 12<script is:inline> 13let hostname = window.location.host 14const 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>