mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 05:41:22 +02:00
- Restructure chat as apps/mobile, apps/web, apps/landing, backend - Add NestJS backend for secure Azure OpenAI API calls - Remove exposed API key from mobile app (security fix) - Add shared chat-types package - Create SvelteKit web app scaffold - Create Astro landing page scaffold - Update pnpm workspace configuration - Add project-level CLAUDE.md documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
618 B
TypeScript
24 lines
618 B
TypeScript
import { Link, Stack } from 'expo-router';
|
|
import { Text } from 'react-native';
|
|
|
|
import { Container } from '~/components/Container';
|
|
|
|
export default function NotFoundScreen() {
|
|
return (
|
|
<>
|
|
<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>
|
|
</>
|
|
);
|
|
}
|
|
|
|
const styles = {
|
|
title: `text-xl font-bold`,
|
|
link: `mt-4 pt-4`,
|
|
linkText: `text-base text-[#2e78b7]`,
|
|
};
|