import { Link, Stack } from "expo-router"; import { Text } from "react-native"; import { StyleSheet } from "react-native-unistyles"; import { Container } from "@/components/container"; export default function NotFoundScreen() { return ( <> This screen doesn't exist. Go to home screen! ); } const styles = StyleSheet.create((theme) => ({ title: { fontSize: 20, fontWeight: "bold", color: theme.colors.typography, }, link: { marginTop: 16, paddingVertical: 16, }, linkText: { fontSize: 14, }, }));