2025-03-23 05:00:07 +00:00
|
|
|
import {Dialog, useTheme} from "react-native-paper";
|
|
|
|
import { Image } from "react-native";
|
2025-03-22 23:24:34 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
const theme = useTheme();
|
|
|
|
|
|
|
|
const Broken = () => {
|
|
|
|
return (
|
|
|
|
<Dialog.Content>
|
2025-03-23 05:00:07 +00:00
|
|
|
<Dialog.Title style={{color: theme.colors.onBackground, fontSize: 16, textAlign: 'center', fontFamily: "Light"}}>The Internet is a Series of Tubes</Dialog.Title>
|
|
|
|
<Image
|
2025-03-22 23:24:34 +00:00
|
|
|
source={require("../assets/images/broken.png")}
|
2025-03-23 05:00:07 +00:00
|
|
|
style={{ alignSelf: 'center', width: "90%" }}
|
2025-03-22 23:24:34 +00:00
|
|
|
/>
|
2025-03-23 05:00:07 +00:00
|
|
|
<Dialog.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.)</Dialog.Title>
|
2025-03-22 23:24:34 +00:00
|
|
|
</Dialog.Content>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Broken;
|