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 (
-

Why are you here?

+ + +

+ Lost in the void? +

+

+ The page you're looking for doesn't exist.
+ We suggest you back to home :) +

- - - + + + Back to Home + +
); }; -export default customError; +export default CustomError; diff --git a/public/16.png b/public/16.png new file mode 100644 index 0000000..fce984a Binary files /dev/null and b/public/16.png differ