diff --git a/frontend/src/pages/403.js b/frontend/src/pages/403.js new file mode 100644 index 0000000..a65ce5e --- /dev/null +++ b/frontend/src/pages/403.js @@ -0,0 +1,79 @@ +import Head from 'next/head'; +import NextLink from 'next/link'; +import ArrowLeftIcon from '@heroicons/react/24/solid/ArrowLeftIcon'; +import { Box, Button, Container, SvgIcon, Typography } from '@mui/material'; + +const Page = () => ( + <> + + + 403 | Oktopus TR-369 + + + + + + + Under development + + + 403: You're not allowed to perform this action + + + You either tried to perform an action you're not authorized to do or you came here by mistake. + + + + + + +); + +export default Page;