import { Link, Stack } from 'expo-router' import { StyleSheet, View } from 'react-native' export default function NotFoundScreen() { return ( <> Go back to Home screen! ) } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#25292e', justifyContent: 'center', alignItems: 'center' }, button: { fontSize: 20, textDecorationLine: 'underline', color: '#fff' } })