diff --git a/src/pages/404.tsx b/src/pages/404.tsx new file mode 100644 index 0000000..f131255 --- /dev/null +++ b/src/pages/404.tsx @@ -0,0 +1,22 @@ +import Head from "next/head"; +import Link from "next/link"; + +import Search from "@/components/Icons/Search"; +import { formatTitle } from "@/lib/format"; + +export default function Custom404() { + return ( + <> + + {formatTitle("404 - Page Not Found")} + +
+ +

404 - Page Not Found

+

+ Return to homepage +

+
+ + ); +}