Live video on the AT Protocol

reorder a bit

+57 -55
+57 -55
js/app/src/screens/about.tsx
··· 1 - import { Text, zero } from "@streamplace/components"; 1 + import { Text, View, zero } from "@streamplace/components"; 2 2 import { Linking, Pressable, ScrollView } from "react-native"; 3 3 4 4 const Anchor = ({ ··· 18 18 19 19 export default function AboutScreen() { 20 20 return ( 21 - <ScrollView style={[{ maxWidth: 500, marginHorizontal: "auto" }]}> 22 - <Text variant="h4" size="2xl" style={[zero.mt[4]]}> 23 - What is Streamplace? 24 - </Text> 25 - <Text> 26 - Streamplace is the video layer for decentralized social networks. We're 27 - building open-source infrastructure to bring high-quality video 28 - experiences to the AT Protocol ecosystem, while preserving user 29 - sovereignty and content authenticity. 30 - </Text> 21 + <ScrollView> 22 + <View style={[{ maxWidth: 500, marginHorizontal: "auto" }]}> 23 + <Text variant="h4" size="2xl" style={[zero.mt[4]]}> 24 + What is Streamplace? 25 + </Text> 26 + <Text> 27 + Streamplace is the video layer for decentralized social networks. 28 + We're building open-source infrastructure around bringing high-quality 29 + video experiences to the AT Protocol, designed around user sovereignty 30 + and content authenticity. 31 + </Text> 31 32 32 - <Text variant="h4" size="xl"> 33 - Open source single-binary node software 34 - </Text> 35 - <Text> 36 - Get up and running with one command. No complex configuration or deep 37 - video expertise required. Perfect for hackers and builders. 38 - </Text> 33 + <Text variant="h4" size="xl"> 34 + Open source single-binary node software 35 + </Text> 36 + <Text> 37 + Get up and running with one command. No complex configuration or deep 38 + video expertise required. Perfect for hackers and builders. 39 + </Text> 39 40 40 - <Text variant="h4" size="xl"> 41 - User sovereignty by design 42 - </Text> 43 - <Text> 44 - All video content is cryptographically signed by creators and respects 45 - their consent preferences. Built on the same public key infrastructure 46 - as decentralized social networks. 47 - </Text> 41 + <Text variant="h4" size="xl"> 42 + User sovereignty by design 43 + </Text> 44 + <Text> 45 + All video content is cryptographically signed by creators and respects 46 + their consent preferences. Built on the same public key infrastructure 47 + as decentralized social networks. 48 + </Text> 48 49 49 - <Text variant="h4" size="xl"> 50 - Familiar streaming experience 51 - </Text> 52 - <Text> 53 - Native apps for iOS, Android, and web that provide the rich video 54 - features users expect: livestreaming, clips, uploads, and more. 55 - </Text> 50 + <Text variant="h4" size="xl"> 51 + Familiar streaming experience 52 + </Text> 53 + <Text> 54 + Native apps for iOS, Android, and web that provide the rich video 55 + features users expect: livestreaming, clips, uploads, and more. 56 + </Text> 56 57 57 - <Text variant="h4" size="xl"> 58 - Built for federation 59 - </Text> 60 - <Text> 61 - Seamlessly integrates with the AT Protocol. Streamplace nodes can 62 - connect to any compatible social network to index and serve video 63 - content. 64 - </Text> 58 + <Text variant="h4" size="xl"> 59 + Built for federation 60 + </Text> 61 + <Text> 62 + Seamlessly integrates with the AT Protocol. Streamplace nodes can 63 + connect to any compatible social network to index and serve video 64 + content. 65 + </Text> 65 66 66 - <Text variant="h4" size="xl"> 67 - Powered by Livepeer 68 - </Text> 69 - <Text> 70 - Leverages battle-tested decentralized video infrastructure for 71 - transcoding, distribution, and delivery at scale. 72 - </Text> 67 + <Text variant="h4" size="xl"> 68 + Powered by Livepeer 69 + </Text> 70 + <Text> 71 + Leverages battle-tested decentralized video infrastructure for 72 + transcoding, distribution, and delivery at scale. 73 + </Text> 73 74 74 - <Text variant="h4" size="xl"> 75 - Want to get involved? 76 - </Text> 77 - <Text> 78 - Join our <Anchor href="https://discord.stream.place">Discord</Anchor> to 79 - learn more about Streamplace and how you can get involved. 80 - </Text> 75 + <Text variant="h4" size="xl"> 76 + Want to get involved? 77 + </Text> 78 + <Text> 79 + Join our <Anchor href="https://discord.stream.place">Discord</Anchor>{" "} 80 + to learn more about Streamplace and how you can get involved. 81 + </Text> 82 + </View> 81 83 </ScrollView> 82 84 ); 83 85 }