15 lines
534 B
JavaScript
15 lines
534 B
JavaScript
import { Alert, AlertDescription, AlertTitle } from '@chakra-ui/react'
|
|
import { TbMoodSad } from 'react-icons/tb'
|
|
|
|
export default function Custom404() {
|
|
return (
|
|
<Alert status="info" flexDirection="column" justifyContent="center" rounded="md" paddingY="10">
|
|
<TbMoodSad style={{ width: '2rem', height: '2rem' }} />
|
|
<AlertTitle mt={4} mb={1} fontSize="lg">
|
|
404: Page Not Found
|
|
</AlertTitle>
|
|
<AlertDescription maxWidth="sm">Try going back or something …</AlertDescription>
|
|
</Alert>
|
|
)
|
|
}
|