import React from 'react' import { Link, Stack } from 'expo-router' import { StyleSheet } from 'react-native' import { ThemedText, ThemedView } from '@/components' import { getString } from '@/locale/I18nConfig' import { metrics } from '@/themes' import { RouteKeys } from '@/routes/RouteKeys' export const NotFoundScreen: React.FC = () => ( <> {getString('notExist')} {getString('goToHome')} ) const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', padding: metrics.medium, }, link: { marginTop: metrics.small, paddingVertical: metrics.small, }, })