Files
tanami-admin-panel/src/Pages/UnderConstruction.jsx
2024-06-24 20:26:28 +05:30

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