···11-import { Text } from "@streamplace/components";
22-import { Linking, Pressable, View } from "react-native";
33-44-const H4 = (props: any) => (
55- <Text
66- style={[{ fontSize: 18, fontWeight: "100", marginBottom: 10 }, props.style]}
77- {...props}
88- />
99-);
1010-const P = (props: any) => (
1111- <Text style={[{ fontSize: 13, marginBottom: 20 }, props.style]} {...props} />
1212-);
11+import { Text, View, zero } from "@streamplace/components";
22+import { Linking, Pressable } from "react-native";
133144const Anchor = ({
155 href,
···2919export default function AboutScreen() {
3020 return (
3121 <View style={[{ maxWidth: 500, marginHorizontal: "auto" }]}>
3232- <H4>What is Streamplace?</H4>
3333- <P style={{ fontSize: 13, marginBottom: 20 }}>
2222+ <Text variant="h4" size="2xl" style={[zero.mt[4]]}>
2323+ What is Streamplace?
2424+ </Text>
2525+ <Text>
3426 Streamplace is the video layer for decentralized social networks. We're
3527 building open-source infrastructure to bring high-quality video
3628 experiences to the AT Protocol ecosystem, while preserving user
3729 sovereignty and content authenticity.
3838- </P>
3030+ </Text>
39314040- <H4>Open source single-binary node software</H4>
4141- <P>
3232+ <Text variant="h4" size="xl">
3333+ Open source single-binary node software
3434+ </Text>
3535+ <Text>
4236 Get up and running with one command. No complex configuration or deep
4337 video expertise required. Perfect for hackers and builders.
4444- </P>
3838+ </Text>
45394646- <H4>User sovereignty by design</H4>
4747- <P>
4040+ <Text variant="h4" size="xl">
4141+ User sovereignty by design
4242+ </Text>
4343+ <Text>
4844 All video content is cryptographically signed by creators and respects
4945 their consent preferences. Built on the same public key infrastructure
5046 as decentralized social networks.
5151- </P>
4747+ </Text>
52485353- <H4>Familiar streaming experience</H4>
5454- <P>
4949+ <Text variant="h4" size="xl">
5050+ Familiar streaming experience
5151+ </Text>
5252+ <Text>
5553 Native apps for iOS, Android, and web that provide the rich video
5654 features users expect: livestreaming, clips, uploads, and more.
5757- </P>
5555+ </Text>
58565959- <H4>Built for federation</H4>
6060- <P>
5757+ <Text variant="h4" size="xl">
5858+ Built for federation
5959+ </Text>
6060+ <Text>
6161 Seamlessly integrates with the AT Protocol. Streamplace nodes can
6262 connect to any compatible social network to index and serve video
6363 content.
6464- </P>
6464+ </Text>
65656666- <H4>Powered by Livepeer</H4>
6767- <P>
6666+ <Text variant="h4" size="xl">
6767+ Powered by Livepeer
6868+ </Text>
6969+ <Text>
6870 Leverages battle-tested decentralized video infrastructure for
6971 transcoding, distribution, and delivery at scale.
7070- </P>
7272+ </Text>
71737272- <H4>Want to get involved?</H4>
7373- <P>
7474+ <Text variant="h4" size="xl">
7575+ Want to get involved?
7676+ </Text>
7777+ <Text>
7478 Join our <Anchor href="https://discord.stream.place">Discord</Anchor> to
7579 learn more about Streamplace and how you can get involved.
7676- </P>
8080+ </Text>
7781 </View>
7882 );
7983}