MingruiZhang's picture
landing.ai
3c3ac54
raw
history blame
257 Bytes
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>
);
}