pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
729 B
22 lines
729 B
import { Button, Container, Text } from '@chakra-ui/react';
|
|
import { Link } from '@tanstack/react-router';
|
|
|
|
const NotFound: React.FC = () => {
|
|
|
|
return (
|
|
<>
|
|
<Container h='100vh'
|
|
alignItems='stretch'
|
|
justifyContent='center' textAlign='center' maxW='sm' centerContent>
|
|
<Text fontSize='8xl' color='ui.main' fontWeight='bold' lineHeight='1' mb={4}>404</Text>
|
|
<Text fontSize='md'>Oops!</Text>
|
|
<Text fontSize='md'>Page not found.</Text>
|
|
<Button as={Link} to='/' color='ui.main' borderColor='ui.main' variant='outline' mt={4}>Go back</Button>
|
|
</Container>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default NotFound;
|
|
|
|
|
|
|