diff --git a/ui/src/components/OnboardingWizard.tsx b/ui/src/components/OnboardingWizard.tsx index 31373344..52997372 100644 --- a/ui/src/components/OnboardingWizard.tsx +++ b/ui/src/components/OnboardingWizard.tsx @@ -555,28 +555,29 @@ export function OnboardingWizard() { {/* Left half — form */}
- {/* Progress indicators */} -
- - Get Started - - Step {step} of 4 - -
- {[1, 2, 3, 4].map((s) => ( -
- ))} -
+ {/* Progress tabs */} +
+ {([ + { step: 1 as Step, label: "Company", icon: Building2 }, + { step: 2 as Step, label: "Agent", icon: Bot }, + { step: 3 as Step, label: "Task", icon: ListTodo }, + { step: 4 as Step, label: "Launch", icon: Rocket }, + ] as const).map(({ step: s, label, icon: Icon }) => ( + + ))}
{/* Step content */}