Spaces:
Running
Running
File size: 257 Bytes
3c3ac54 |
1 2 3 4 5 6 7 8 |
export default async function Unauthorized() {
return (
<div className="flex flex-col h-[calc(100vh-theme(spacing.16))] items-center justify-center py-10 space-y-2">
You are not authorized to view this page. Please sign in to continue.
</div>
);
}
|