import { Link, Stack } from 'expo-router';
import { StyleSheet, Text, View } from 'react-native';
import { useTranslation } from 'react-i18next';
import { useAppearance } from '@/src/context/AppearanceContext';
export default function NotFoundScreen() {
const { t } = useTranslation();
const { colors } = useAppearance();
return (
<>
{t('notFound.title')}
{t('notFound.description')}
{t('notFound.backToDashboard')}
>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
padding: 20,
gap: 12,
},
title: {
fontSize: 22,
fontWeight: '700',
},
description: {
fontSize: 15,
textAlign: 'center',
},
link: {
marginTop: 8,
fontSize: 16,
fontWeight: '600',
},
});