pogdark-app/components/Broken.tsx

20 lines
798 B
TypeScript
Raw Permalink Normal View History

import { Title, useTheme } from "react-native-paper";
2025-03-28 04:22:22 +00:00
import { Image, View } from "react-native";
import React from "react";
const Broken = () => {
2025-03-28 04:22:22 +00:00
const theme = useTheme();
return (
2025-03-28 04:22:22 +00:00
<View>
<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
source={require("../assets/images/broken.png")}
style={{ alignSelf: 'center', resizeMode: "contain", height: 400/3 }}
/>
<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>
);
};
export default Broken;