Improve not found page

zio/stable
Paul Frazee 2022-11-14 16:27:59 -06:00
parent d7c6fbe11d
commit a6e2429a13
1 changed files with 12 additions and 3 deletions

View File

@ -1,13 +1,22 @@
import React from 'react'
import {Text, Button, View} from 'react-native'
import {ViewHeader} from '../com/util/ViewHeader'
import {useStores} from '../../state'
export const NotFound = () => {
const stores = useStores()
return (
<View style={{justifyContent: 'center', alignItems: 'center'}}>
<Text style={{fontSize: 20, fontWeight: 'bold'}}>Page not found</Text>
<Button title="Home" onPress={() => stores.nav.navigate('/')} />
<View>
<ViewHeader title="Page not found" />
<View
style={{
justifyContent: 'center',
alignItems: 'center',
paddingTop: 100,
}}>
<Text style={{fontSize: 40, fontWeight: 'bold'}}>Page not found</Text>
<Button title="Home" onPress={() => stores.nav.navigate('/')} />
</View>
</View>
)
}