mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 15:49:42 +02:00
- Move finance, mail, moodlit to apps-archived for later development - Rename games/voxel-lava to games/voxelava 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
677 B
TypeScript
26 lines
677 B
TypeScript
import { Link, Stack } from 'expo-router';
|
|
|
|
import { Text, View } from 'react-native';
|
|
|
|
import { Container } from '@/components/Container';
|
|
|
|
export default function NotFoundScreen() {
|
|
return (
|
|
<View className={styles.container}>
|
|
<Stack.Screen options={{ title: 'Oops!' }} />
|
|
<Container>
|
|
<Text className={styles.title}>{"This screen doesn't exist."}</Text>
|
|
<Link href="/" className={styles.link}>
|
|
<Text className={styles.linkText}>Go to home screen!</Text>
|
|
</Link>
|
|
</Container>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = {
|
|
container: `flex flex-1 bg-black`,
|
|
title: `text-xl font-bold text-white`,
|
|
link: `mt-4 pt-4`,
|
|
linkText: `text-base text-blue-500`,
|
|
};
|