Archived
1
0
This repository has been archived on 2025-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
app/apps/frontend/app/+not-found.tsx

19 lines
533 B
TypeScript

import { Link, Stack } from 'expo-router';
import { Text, View } from '@/components/Themed';
export default function NotFoundScreen() {
return (
<>
<Stack.Screen options={{ title: 'Oops!' }} />
<View className="flex-1 items-center justify-center p-5">
<Text className="text-xl font-bold">This screen doesn't exist.</Text>
<Link href="/" className="mt-4 py-4">
<Text className="text-sm" style={{ color: '#2e78b7' }}>Go to home screen!</Text>
</Link>
</View>
</>
);
}