File size: 710 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
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>
)
}
|