in src/azurechat/app/unauthorized/page.tsx [3:12]
export default async function Home() {
return (
<Card className="h-full items-top flex justify-left flex-1 p-10">
<div className="flex-col">
<h1 className="text-xl font-semibold text-primary">You not authorized to view this page</h1>
<p className="mt-5">This page can only be viewed by admin users.</p>
</div>
</Card>
)
}