FIEF NextJS

This commit is contained in:
Koper
2023-08-17 22:57:59 +07:00
parent 0e5bc7e997
commit 1b1e67901c
7 changed files with 122 additions and 6 deletions

7
www/pages/forbidden.tsx Normal file
View File

@@ -0,0 +1,7 @@
import type { NextPage } from "next";
const Forbidden: NextPage = () => {
return <h2>Sorry, you are not authorized to access this page.</h2>;
};
export default Forbidden;