2025-07-24 13:04:06 -05:00
|
|
|
import { Link, Stack } from 'expo-router';
|
2025-07-24 18:08:31 -05:00
|
|
|
import { StyleSheet, View } from 'react-native';
|
2025-07-24 13:04:06 -05:00
|
|
|
|
|
|
|
|
export default function NotFoundScreen() {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
2025-07-24 18:08:31 -05:00
|
|
|
<Stack.Screen options={{ headerShown: false }} />
|
|
|
|
|
<View style={styles.container}>
|
|
|
|
|
<Link href="./" style={styles.button}>
|
|
|
|
|
Go back to Home screen!
|
2025-07-24 13:04:06 -05:00
|
|
|
</Link>
|
2025-07-24 18:08:31 -05:00
|
|
|
</View>
|
2025-07-24 13:04:06 -05:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
|
container: {
|
|
|
|
|
flex: 1,
|
2025-07-24 18:08:31 -05:00
|
|
|
backgroundColor: '#25292e',
|
2025-07-24 13:04:06 -05:00
|
|
|
justifyContent: 'center',
|
2025-07-24 18:08:31 -05:00
|
|
|
alignItems: 'center',
|
2025-07-24 13:04:06 -05:00
|
|
|
},
|
2025-07-24 18:08:31 -05:00
|
|
|
|
|
|
|
|
button: {
|
|
|
|
|
fontSize: 20,
|
|
|
|
|
textDecorationLine: 'underline',
|
|
|
|
|
color: '#fff',
|
2025-07-24 13:04:06 -05:00
|
|
|
},
|
|
|
|
|
});
|