'use client'; import { use, useState } from "react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { ShieldCheck, Loader2 } from "lucide-react"; interface PageProps { searchParams: Promise<{ token_hash?: string; type?: string; next?: string; }>; } export default function VerifyLinkPage({ searchParams }: PageProps) { const params = use(searchParams); const [isSubmitting, setIsSubmitting] = useState(false); const tokenHash = params.token_hash || ""; const type = params.type || ""; const next = params.next || "/"; const handleSubmit = () => { setIsSubmitting(true); }; return (
Bitte bestätigen Sie den Vorgang mit einem Klick auf den Button, um fortzufahren.