import { Link, Stack } from 'expo-router'; import { useTranslation } from 'react-i18next'; import { StyleSheet } from 'react-native'; import { ThemedText } from '../components/ThemedText'; import { ThemedView } from '../components/ThemedView'; export default function NotFoundScreen() { const { t } = useTranslation(); return ( <> {t('screen_does_not_exist')} {t('go_to_home_screen')} ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', padding: 20, }, link: { marginTop: 15, paddingVertical: 15, }, });