import { Link, Stack } from 'expo-router'; import { View } from 'react-native'; import { BoldText, RegularText } from '../components/ui/Text'; export default function NotFoundScreen() { return ( <> This screen doesn't exist. Go to home screen! ); }