2024-06-24 12:08:21 +05:30
|
|
|
import { Box, Image } from "@chakra-ui/react"
|
|
|
|
|
import error from "../assets/Error.svg"
|
2024-06-20 12:09:48 +05:30
|
|
|
const NotFound = () => {
|
|
|
|
|
return (
|
2024-06-24 12:08:21 +05:30
|
|
|
|
|
|
|
|
<Box
|
|
|
|
|
h={'100vh'}
|
|
|
|
|
display={'flex'}
|
|
|
|
|
justifyContent={'center'}
|
|
|
|
|
alignItems={'center'}
|
|
|
|
|
flexDirection={'column'}
|
|
|
|
|
gap={5}
|
|
|
|
|
>
|
|
|
|
|
<Image src={error} w={300} />
|
|
|
|
|
{/* <Text color={'blue.800'} as={'span'} className='fw-bold'>No Internet !</Text> */}
|
|
|
|
|
</Box>
|
2024-06-20 12:09:48 +05:30
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default NotFound
|