diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-11-09 20:15:12 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-11-09 20:15:12 -0800 |
| commit | f0e80463fa23a6a52623b7507d6959d19af6ae07 (patch) | |
| tree | 9847794861802746def25f0d556210d4985ed901 /frontend/src/components/UnauthorizedAccess.tsx | |
| parent | 6649c6d950ee4216773d55f71b7e28eaef715ef5 (diff) | |
clean up admin page into components
Diffstat (limited to 'frontend/src/components/UnauthorizedAccess.tsx')
| -rw-r--r-- | frontend/src/components/UnauthorizedAccess.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/components/UnauthorizedAccess.tsx b/frontend/src/components/UnauthorizedAccess.tsx new file mode 100644 index 0000000..a26afd1 --- /dev/null +++ b/frontend/src/components/UnauthorizedAccess.tsx @@ -0,0 +1,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;
\ No newline at end of file |
