Live video on the AT Protocol
1import { Anchor, Paragraph, H4 as TamaguiH4, View } from "tamagui";
2
3const H4 = (props: any) => <TamaguiH4 fontWeight="100" {...props} />;
4const P = (props: any) => (
5 <Paragraph fontSize={13} marginBottom={20} {...props} />
6);
7
8export default function AboutScreen() {
9 return (
10 <View maxWidth={500} marginHorizontal="auto">
11 <H4>What is Streamplace?</H4>
12 <P fontSize={13} marginBottom={20}>
13 Streamplace is the video layer for decentralized social networks. We're
14 building open-source infrastructure to bring high-quality video
15 experiences to the AT Protocol ecosystem, while preserving user
16 sovereignty and content authenticity.
17 </P>
18
19 <H4>Open source single-binary node software</H4>
20 <P>
21 Get up and running with one command. No complex configuration or deep
22 video expertise required. Perfect for hackers and builders.
23 </P>
24
25 <H4>User sovereignty by design</H4>
26 <P>
27 All video content is cryptographically signed by creators and respects
28 their consent preferences. Built on the same public key infrastructure
29 as decentralized social networks.
30 </P>
31
32 <H4>Familiar streaming experience</H4>
33 <P>
34 Native apps for iOS, Android, and web that provide the rich video
35 features users expect: livestreaming, clips, uploads, and more.
36 </P>
37
38 <H4>Built for federation</H4>
39 <P>
40 Seamlessly integrates with the AT Protocol. Streamplace nodes can
41 connect to any compatible social network to index and serve video
42 content.
43 </P>
44
45 <H4>Powered by Livepeer</H4>
46 <P>
47 Leverages battle-tested decentralized video infrastructure for
48 transcoding, distribution, and delivery at scale.
49 </P>
50
51 <H4>Want to get involved?</H4>
52 <P>
53 Join our <Anchor href="https://discord.stream.place">Discord</Anchor> to
54 learn more about Streamplace and how you can get involved.
55 </P>
56 </View>
57 );
58}