// ** Next Import
import Link from 'next/link'
import { NextPage } from 'next'
// ** MUI Components
import Button from '@mui/material/Button'
import { styled } from '@mui/material/styles'
import Typography from '@mui/material/Typography'
import Box from '@mui/material/Box'
// ** Layout Import
import BlankLayout from '~/@core/layouts/BlankLayout'
// ** Demo Imports
import FooterIllustrations from '~/views/pages/misc/FooterIllustrations'
// ** Styled Components
const BoxWrapper = styled(Box)(({ theme }) => ({
[theme.breakpoints.down('md')]: {
width: '90vw'
}
}))
const Img = styled('img')(({ theme }) => ({
marginBottom: theme.spacing(10),
[theme.breakpoints.down('lg')]: {
height: 450,
marginTop: theme.spacing(10)
},
[theme.breakpoints.down('md')]: {
height: 400
},
[theme.breakpoints.up('lg')]: {
marginTop: theme.spacing(13)
}
}))
// const Error401: NextPage = () => {
const Error401: any = () => {
return (
401
You are not authorized! 🔐
You don′t have permission to access this page. Go Home!
)
}
Error401.getLayout = (page: NextPage) => {page}
export default Error401