2025-03-28 04:22:22 +00:00
|
|
|
import {Title, useTheme} from "react-native-paper";
|
|
|
|
import { Image, View } from "react-native";
|
2025-03-22 23:24:34 +00:00
|
|
|
import React from "react";
|
|
|
|
|
2025-03-28 04:22:22 +00:00
|
|
|
|
2025-03-22 23:24:34 +00:00
|
|
|
|
|
|
|
const Broken = () => {
|
2025-03-28 04:22:22 +00:00
|
|
|
const theme = useTheme();
|
2025-03-22 23:24:34 +00:00
|
|
|
return (
|
2025-03-28 04:22:22 +00:00
|
|
|
<View>
|
2025-03-26 03:38:19 +00:00
|
|
|
<Title style={{color: theme.colors.onBackground, fontSize: 16, textAlign: 'center', fontFamily: "Light"}}>The Internet is a Series of Tubes</Title>
|
2025-03-23 05:00:07 +00:00
|
|
|
<Image
|
2025-03-22 23:24:34 +00:00
|
|
|
source={require("../assets/images/broken.png")}
|
2025-03-26 03:38:19 +00:00
|
|
|
style={{ alignSelf: 'center', resizeMode: "contain", height: 400/3 }}
|
2025-03-22 23:24:34 +00:00
|
|
|
/>
|
2025-03-26 03:38:19 +00:00
|
|
|
<Title style={{color: theme.colors.onBackground, fontSize: 16, textAlign: 'center', fontFamily: "Light"}}>And these aren't connected. {"\n"} (We're still working on this part.)</Title>
|
2025-03-28 04:22:22 +00:00
|
|
|
</View>
|
2025-03-22 23:24:34 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Broken;
|