feat: not allowed + not found pages

This commit is contained in:
2025-05-31 18:39:49 +02:00
parent d451331c66
commit f8772f8de2
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import type { FC } from "react";
const NotAllowedPage: FC = () => {
return <div>this resource is not allowed</div>;
};
export default NotAllowedPage;

View File

@ -0,0 +1,7 @@
import type { FC } from "react";
const NotFoundPage: FC = () => {
return <div>404 - Not Found</div>;
};
export default NotFoundPage;