31 lines
713 B
TypeScript
31 lines
713 B
TypeScript
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 (
|
|
<>
|
|
<Stack.Screen options={{ title: t('notFound.title') }} />
|
|
<View style={styles.container}>
|
|
<Link href="/" style={styles.button}>
|
|
{t('notFound.goBack')}
|
|
</Link>
|
|
</View>
|
|
</>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: "#25292e",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
button: {
|
|
fontSize: 20,
|
|
textDecorationLine: "underline",
|
|
color: "#fff",
|
|
},
|
|
}); |