"use client"; import { useSession } from "next-auth/react"; import toast from "react-hot-toast"; import { sendVerificationLink } from "(app)/admin/user/action"; import { TriangleAlert } from "lucide-react"; import { useState } from "react"; import { Button } from "_components/ui/Button"; export const EmailVerification = () => { const session = useSession(); const [loading, setLoading] = useState(false); return (

E-Mail Adresse nicht bestätigt!

Wir haben dir bereits eine E-Mail gesendet. Wenn deine E-Mail Adresse nicht bestätigt ist, kannst du dich nicht mit der Leitstelle verbinden!
); };