···11-import { Text, zero } from "@streamplace/components";
11+import { Text, View, zero } from "@streamplace/components";
22import { Linking, Pressable, ScrollView } from "react-native";
3344const Anchor = ({
···18181919export default function AboutScreen() {
2020 return (
2121- <ScrollView style={[{ maxWidth: 500, marginHorizontal: "auto" }]}>
2222- <Text variant="h4" size="2xl" style={[zero.mt[4]]}>
2323- What is Streamplace?
2424- </Text>
2525- <Text>
2626- Streamplace is the video layer for decentralized social networks. We're
2727- building open-source infrastructure to bring high-quality video
2828- experiences to the AT Protocol ecosystem, while preserving user
2929- sovereignty and content authenticity.
3030- </Text>
2121+ <ScrollView>
2222+ <View style={[{ maxWidth: 500, marginHorizontal: "auto" }]}>
2323+ <Text variant="h4" size="2xl" style={[zero.mt[4]]}>
2424+ What is Streamplace?
2525+ </Text>
2626+ <Text>
2727+ Streamplace is the video layer for decentralized social networks.
2828+ We're building open-source infrastructure around bringing high-quality
2929+ video experiences to the AT Protocol, designed around user sovereignty
3030+ and content authenticity.
3131+ </Text>
31323232- <Text variant="h4" size="xl">
3333- Open source single-binary node software
3434- </Text>
3535- <Text>
3636- Get up and running with one command. No complex configuration or deep
3737- video expertise required. Perfect for hackers and builders.
3838- </Text>
3333+ <Text variant="h4" size="xl">
3434+ Open source single-binary node software
3535+ </Text>
3636+ <Text>
3737+ Get up and running with one command. No complex configuration or deep
3838+ video expertise required. Perfect for hackers and builders.
3939+ </Text>
39404040- <Text variant="h4" size="xl">
4141- User sovereignty by design
4242- </Text>
4343- <Text>
4444- All video content is cryptographically signed by creators and respects
4545- their consent preferences. Built on the same public key infrastructure
4646- as decentralized social networks.
4747- </Text>
4141+ <Text variant="h4" size="xl">
4242+ User sovereignty by design
4343+ </Text>
4444+ <Text>
4545+ All video content is cryptographically signed by creators and respects
4646+ their consent preferences. Built on the same public key infrastructure
4747+ as decentralized social networks.
4848+ </Text>
48494949- <Text variant="h4" size="xl">
5050- Familiar streaming experience
5151- </Text>
5252- <Text>
5353- Native apps for iOS, Android, and web that provide the rich video
5454- features users expect: livestreaming, clips, uploads, and more.
5555- </Text>
5050+ <Text variant="h4" size="xl">
5151+ Familiar streaming experience
5252+ </Text>
5353+ <Text>
5454+ Native apps for iOS, Android, and web that provide the rich video
5555+ features users expect: livestreaming, clips, uploads, and more.
5656+ </Text>
56575757- <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- </Text>
5858+ <Text variant="h4" size="xl">
5959+ Built for federation
6060+ </Text>
6161+ <Text>
6262+ Seamlessly integrates with the AT Protocol. Streamplace nodes can
6363+ connect to any compatible social network to index and serve video
6464+ content.
6565+ </Text>
65666666- <Text variant="h4" size="xl">
6767- Powered by Livepeer
6868- </Text>
6969- <Text>
7070- Leverages battle-tested decentralized video infrastructure for
7171- transcoding, distribution, and delivery at scale.
7272- </Text>
6767+ <Text variant="h4" size="xl">
6868+ Powered by Livepeer
6969+ </Text>
7070+ <Text>
7171+ Leverages battle-tested decentralized video infrastructure for
7272+ transcoding, distribution, and delivery at scale.
7373+ </Text>
73747474- <Text variant="h4" size="xl">
7575- Want to get involved?
7676- </Text>
7777- <Text>
7878- Join our <Anchor href="https://discord.stream.place">Discord</Anchor> to
7979- learn more about Streamplace and how you can get involved.
8080- </Text>
7575+ <Text variant="h4" size="xl">
7676+ Want to get involved?
7777+ </Text>
7878+ <Text>
7979+ Join our <Anchor href="https://discord.stream.place">Discord</Anchor>{" "}
8080+ to learn more about Streamplace and how you can get involved.
8181+ </Text>
8282+ </View>
8183 </ScrollView>
8284 );
8385}