feat(ui): replace route-based provider flow with modal wizard (#10156)

This commit is contained in:
Alejandro Bailo
2026-02-25 13:08:17 +01:00
committed by GitHub
parent 231bfd6f41
commit 7935e926ac
47 changed files with 2445 additions and 987 deletions
@@ -0,0 +1,15 @@
"use client";
import { CheckCircle2 } from "lucide-react";
export function LaunchStep() {
return (
<div className="flex min-h-[320px] flex-col items-center justify-center gap-4 text-center">
<CheckCircle2 className="text-success size-12" />
<h3 className="text-xl font-semibold">Provider connected successfully</h3>
<p className="text-muted-foreground text-sm">
Continue with the action button to go to scans.
</p>
</div>
);
}