mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
20 lines
559 B
TypeScript
20 lines
559 B
TypeScript
import Button from '@/components/Button';
|
|
|
|
const PermissionNotFound = () => {
|
|
return (
|
|
<div className='w-full h-screen flex flex-col justify-center items-center gap-4'>
|
|
<h2 className='text-2xl font-bold text-error'>
|
|
Hak Akses Tidak Ditemukan
|
|
</h2>
|
|
<p className='text-gray-600 text-center'>
|
|
Anda tidak memiliki hak akses untuk mengakses halaman ini.
|
|
</p>
|
|
<Button href='/dashboard' className='text-base-100'>
|
|
Kembali ke Dashboard
|
|
</Button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PermissionNotFound;
|