Files
reflector/www/pages/forbidden.tsx
2023-08-17 22:57:59 +07:00

8 lines
175 B
TypeScript

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