22 lines
588 B
JavaScript
22 lines
588 B
JavaScript
import { Box, Image, Text } from '@chakra-ui/react'
|
|
import React from 'react'
|
|
// import noInternet from "../assets/Error.svg"
|
|
import robot from "../assets/robot.png"
|
|
|
|
const UnderConstruction = ({title}) => {
|
|
return (
|
|
<Box
|
|
h={'100vh'}
|
|
display={'flex'}
|
|
justifyContent={'center'}
|
|
alignItems={'center'}
|
|
flexDirection={'column'}
|
|
gap={8}
|
|
>
|
|
<Image src={robot} w={"171px"} />
|
|
{/* <Text color={'green.800'} as={'span'} fontSize={'small'}>The requested URL was not found on this server.</Text> */}
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
export default UnderConstruction |