mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
13 lines
380 B
TypeScript
13 lines
380 B
TypeScript
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'>Permission Not Found</h2>
|
|
<p className='text-gray-600 text-center'>
|
|
You do not have permission to access this page.
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PermissionNotFound;
|