Live video on the AT Protocol
79
fork

Configure Feed

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

at eli/multitesting 83 lines 2.5 kB view raw
1import { Text, View, zero } from "@streamplace/components"; 2import { Linking, Pressable } from "react-native"; 3 4const Anchor = ({ 5 href, 6 children, 7 ...props 8}: { 9 href: string; 10 children: React.ReactNode; 11}) => ( 12 <Pressable onPress={() => Linking.openURL(href)} {...props}> 13 <Text style={{ color: "#0066cc", textDecorationLine: "underline" }}> 14 {children} 15 </Text> 16 </Pressable> 17); 18 19export default function AboutScreen() { 20 return ( 21 <View 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> 31 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> 39 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> 48 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> 56 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> 65 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> 73 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> 81 </View> 82 ); 83}