feat(FE-331): create PermissionNotFound component

This commit is contained in:
ValdiANS
2025-12-23 12:07:14 +07:00
parent ead5ba759d
commit de19cc5de2
@@ -0,0 +1,12 @@
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;