blob: a26afd1d71b29016fd5d2b45f1698349290d36ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
const UnauthorizedAccess = () => {
return (
<div className="min-h-screen bg-slate-950 flex items-center justify-center">
<div className="text-center">
<div className="w-8 h-8 border-2 border-violet-500 border-t-transparent rounded-full animate-spin mx-auto mb-4"></div>
<p className="text-slate-400">You are not authorized to access this page.</p>
</div>
</div>
);
};
export default UnauthorizedAccess;
|