Add account hierarchy framework with migrations, RLS policies, and UI components
This commit is contained in:
@@ -1,16 +1,19 @@
|
||||
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="mb-4 rounded-full bg-destructive/10 p-4">
|
||||
<AlertTriangle className="h-8 w-8 text-destructive" />
|
||||
<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="mt-2 max-w-md text-sm text-muted-foreground">
|
||||
Das angeforderte Konto existiert nicht oder Sie haben keine Berechtigung darauf zuzugreifen.
|
||||
<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">
|
||||
|
||||
Reference in New Issue
Block a user