diff --git a/pages/404.tsx b/pages/404.tsx index 78b61c0..6a92de0 100644 --- a/pages/404.tsx +++ b/pages/404.tsx @@ -1,22 +1,34 @@ +import { NextPage } from "next"; import Image from "next/image"; -import { FC } from "react"; +import Link from "next/link"; -const customError: FC = () => { + +const CustomError: NextPage = () => { return (
+ The page you're looking for doesn't exist.
+ We suggest you back to home :)
+