Custom error page

This commit is contained in:
David
2021-03-16 23:58:12 +01:00
parent 75757ae5a7
commit 0646b17c9b
7 changed files with 81 additions and 7 deletions

8
pages/404.tsx Normal file
View File

@@ -0,0 +1,8 @@
import { FC } from "react";
import { CustomError } from "../components";
const My404: FC = () => (
<CustomError statusCode={404} />
);
export default My404;