feat: not allowed + not found pages
This commit is contained in:
7
web/src/pages/NotAllowed/index.tsx
Normal file
7
web/src/pages/NotAllowed/index.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
import type { FC } from "react";
|
||||
|
||||
const NotAllowedPage: FC = () => {
|
||||
return <div>this resource is not allowed</div>;
|
||||
};
|
||||
|
||||
export default NotAllowedPage;
|
7
web/src/pages/NotFound/index.tsx
Normal file
7
web/src/pages/NotFound/index.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
import type { FC } from "react";
|
||||
|
||||
const NotFoundPage: FC = () => {
|
||||
return <div>404 - Not Found</div>;
|
||||
};
|
||||
|
||||
export default NotFoundPage;
|
Reference in New Issue
Block a user