diff --git a/src/pages/404.tsx b/src/pages/404.tsx index 4765f06..c06381b 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -1,9 +1,21 @@ -import React from "react"; +import CustomLink from "@/common/link"; +import { Flex, Center, Heading, Text, Button } from "@chakra-ui/react"; +import { House } from "phosphor-react"; -type Props = {}; - -const Error = (props: Props) => { - return
Error 404
; +const Error = () => { + return ( + <> +
+ + Error 404 + The page you are trying to access does not exist. + + Go home + + +
+ + ); }; export default Error;