import Link from "next/link" import { AlertCircle, ShieldCheck } from "lucide-react" export default async function ActivateErrorPage(props: { searchParams: Promise<{ reason?: string }> }) { const { reason } = await props.searchParams return (
{reason ?? "Could not exchange the handoff token."}