26 lines
808 B
TypeScript
26 lines
808 B
TypeScript
import Link from 'next/link';
|
|
|
|
import { AlertTriangle } from 'lucide-react';
|
|
|
|
import { Button } from '@kit/ui/button';
|
|
|
|
export function AccountNotFound() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center py-24 text-center">
|
|
<div className="bg-destructive/10 mb-4 rounded-full p-4">
|
|
<AlertTriangle className="text-destructive h-8 w-8" />
|
|
</div>
|
|
<h2 className="text-xl font-semibold">Konto nicht gefunden</h2>
|
|
<p className="text-muted-foreground mt-2 max-w-md text-sm">
|
|
Das angeforderte Konto existiert nicht oder Sie haben keine Berechtigung
|
|
darauf zuzugreifen.
|
|
</p>
|
|
<div className="mt-6">
|
|
<Link href="/home">
|
|
<Button variant="outline">Zum Dashboard</Button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|