import { Link, Stack } from "expo-router"; import { StyleSheet, View } from "react-native"; import { useTranslation } from 'react-i18next'; export default function NotFoundScreen() { const { t } = useTranslation(); return ( <> {t('notFound.goBack')} ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#25292e", justifyContent: "center", alignItems: "center", }, button: { fontSize: 20, textDecorationLine: "underline", color: "#fff", }, });