import dynamic from 'next/dynamic' import { useRouter } from 'next/router' import { NextSeo } from 'next-seo' import { ErrorText } from '@utils/Constants' const Button = dynamic(() => import('@components/Button')) const Forbidden:React.FC = () => { const router = useRouter() return <>

403

{ErrorText[403]}

해당 작업을 수행할 수 있는 권한이 없습니다. 무언가 잘못된 것 같다면 문의해주세요.

} export default Forbidden