candidate data

This commit is contained in:
Suvodip
2025-03-25 10:43:04 +05:30
commit f98b9f9036
83 changed files with 19007 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import Link from "next/link";
import { Button } from "@/components/ui/button";
import { AlertCircle } from "lucide-react";
export default function UnauthorizedPage() {
return (
<div className="flex flex-col items-center justify-center min-h-screen p-4">
<div className="flex flex-col items-center justify-center max-w-md text-center space-y-4">
<div className="rounded-full bg-destructive/20 p-3">
<AlertCircle className="h-6 w-6 text-destructive" />
</div>
<h1 className="text-2xl font-bold">Unauthorized Access</h1>
<p className="text-muted-foreground">
You don't have permission to access this page. Please contact an administrator if you believe this is an error.
</p>
<div className="flex flex-col sm:flex-row gap-2 mt-6">
<Button asChild>
<Link href="/">Return to Home</Link>
</Button>
<Button asChild variant="outline">
<Link href="/login">Sign In</Link>
</Button>
</div>
</div>
</div>
);
}