Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
710 Bytes
import { Header } from "@/components/docs/header"
import { Box, Center, Heading, Icon, Text, VStack } from "@chakra-ui/react"
import { TbProgressBolt } from "react-icons/tb"
export default function NotFound() {
return (
<Box
css={{
"--header-height": "104px",
"--content-height": "calc(100dvh - var(--header-height))",
}}
>
<Header />
<Center minH="90dvh">
<VStack gap="4">
<Icon fontSize="8xl" color="teal.500">
<TbProgressBolt />
</Icon>
<Heading size="2xl">404. Page not found</Heading>
<Text>The page you are looking for does not exist.</Text>
</VStack>
</Center>
</Box>
)
}