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 (

Activation failed

{reason ?? "Could not exchange the handoff token."}

Re-open the garage from the SaaS dashboard to get a fresh link.

Back to SaaS
) }