import { Link, Stack } from 'expo-router'; import { Text, View } from 'react-native'; import { Container } from '@/components/Container'; export default function NotFoundScreen() { return ( {"This screen doesn't exist."} Go to home screen! ); } const styles = { container: `flex flex-1 bg-white`, title: `text-xl font-bold`, link: `mt-4 pt-4`, linkText: `text-base text-[#2e78b7]`, };