import { Stepper, type StepperStep } from "@/components/ui/stepper"export function WorkspaceOnboarding() {
const [complete, setComplete] = useState(false)
const steps: StepperStep[] = [
{ id: "profile", label: "Your profile", content: <ProfileForm /> },
{ id: "team", label: "Invite your team", content: <InviteForm /> },
{ id: "review", label: "Review", content: <Review /> },
]
return (
<Stepper
steps={steps}
complete={complete}
height={220}
finishLabel="Create workspace"
onComplete={() => setComplete(true)}
/>
)
}