[ui] font added, movie item added, pages layout

This commit is contained in:
Arta
2024-01-18 15:41:42 +03:30
parent 1865d2e6a8
commit ad82e72969
28 changed files with 413 additions and 245 deletions

View File

@@ -1,17 +1,18 @@
import { Link, Stack } from 'expo-router';
import { StyleSheet } from 'react-native';
import { Text, View } from '../components/Themed';
import { StyleSheet, View } from 'react-native';
import { BoldText, RegularText } from '../components/Styled';
export default function NotFoundScreen() {
return (
<>
<Stack.Screen options={{ title: 'Oops!' }} />
<View style={styles.container}>
<Text style={styles.title}>This screen doesn&apos;t exist.</Text>
<BoldText style={styles.title}>
This screen doesn&apos;t exist.
</BoldText>
<Link href="/" style={styles.link}>
<Text style={styles.linkText}>Go to home screen!</Text>
<RegularText style={styles.linkText}>Go to home screen!</RegularText>
</Link>
</View>
</>