Files
tanami-admin-panel/src/Pages/NotFound.jsx

22 lines
566 B
React
Raw Normal View History

2024-06-24 20:26:28 +05:30
import { Box, Image, Text } from "@chakra-ui/react"
2024-06-24 12:08:21 +05:30
import error from "../assets/Error.svg"
2024-06-25 12:05:39 +05:30
import robot from "../assets/404.png"
// import robot from "../assets/robot.png"
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'}
2024-06-24 20:26:28 +05:30
gap={8}
2024-06-24 12:08:21 +05:30
>
2024-06-24 20:26:28 +05:30
<Image src={robot} w={"171px"} />
2024-06-25 12:05:39 +05:30
<Text color={'green.800'} as={'span'} fontSize={'small'}>The requested URL was not found on this server.</Text>
2024-06-24 12:08:21 +05:30
</Box>
2024-06-20 12:09:48 +05:30
)
}
export default NotFound