HoshiAI-fe/src/pages/Unauthorized/Unauthorized.tsx
2025-11-23 18:52:26 +01:00

19 lines
451 B
TypeScript

import { Box, Typography } from "@mui/material";
export default function Unauthorized() {
return (
<Box
display="flex"
justifyContent="center"
alignItems="center"
flexDirection="column"
>
<Typography variant="h2" color="error" mb={2}>
401
</Typography>
<Typography variant="h5">Unauthorized</Typography>
<Typography>You do not have access to this page.</Typography>
</Box>
);
}