mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 03:41:23 +02:00
Migrate figgos from single Expo app to multi-app monorepo structure: - Move mobile app to apps/mobile/ - Add apps/web/ (SvelteKit) and apps/backend/ (NestJS) scaffolds - Add packages/shared/ for shared types and constants - Update root package.json with new dev commands - Temporarily skip type-check (run pnpm install first) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
609 B
TypeScript
23 lines
609 B
TypeScript
import { Link, Stack } from 'expo-router';
|
|
import { Text, View } from 'react-native';
|
|
|
|
export default function NotFoundScreen() {
|
|
return (
|
|
<>
|
|
<Stack.Screen options={{ title: 'Oops!' }} />
|
|
<View className={styles.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>
|
|
</View>
|
|
</>
|
|
);
|
|
}
|
|
|
|
const styles = {
|
|
container: `items-center flex-1 justify-center p-5`,
|
|
title: `text-xl font-bold`,
|
|
link: `mt-4 pt-4`,
|
|
linkText: `text-base text-[#2e78b7]`,
|
|
};
|