Onboarding

Multi-step wizards, progress checklists, welcome screens, and onboarding flows.

Multi Step Wizard

Generic multi-step wizard component with step validation and progress bar.

Preview

No preview available

See the code snippet below for usage.

Multi Step Wizard.tsx
import { MultiStepWizard } from "@launchapp/design-system/blocks/onboarding";const steps = [  { id: "basics", title: "Basic Info", content: <div className="p-4">Name and email form</div> },  { id: "plan", title: "Choose Plan", content: <div className="p-4">Plan selection</div> },  { id: "payment", title: "Payment", content: <div className="p-4">Payment form</div> },];export default function Page() {  return <MultiStepWizard steps={steps} onComplete={() => console.log("complete")} />;}

Progress Stepper

Horizontal or vertical step indicator showing progress through a multi-step flow.

Preview

No preview available

See the code snippet below for usage.

Progress Stepper.tsx
import { ProgressStepper } from "@launchapp/design-system/blocks/onboarding";const steps = [  { id: "profile", title: "Profile", completed: true },  { id: "billing", title: "Billing", completed: true },  { id: "review", title: "Review", completed: false, current: true },  { id: "launch", title: "Launch", completed: false },];export default function Page() {  return <ProgressStepper steps={steps} orientation="horizontal" />;}

Setup Checklist

Post-signup setup checklist guiding users through initial configuration steps.

Preview

No preview available

See the code snippet below for usage.

Setup Checklist.tsx
import { SetupChecklist } from "@launchapp/design-system/blocks/onboarding";const steps = [  { id: "verify", title: "Verify your email", completed: true, href: "#" },  { id: "profile", title: "Complete your profile", completed: false, href: "/settings/profile" },  { id: "invite", title: "Invite your team", completed: false, href: "/team/invite" },  { id: "integrate", title: "Set up an integration", completed: false, href: "/integrations" },];export default function Page() {  return <SetupChecklist steps={steps} title="Complete setup" />;}

Onboarding Wizard

Multi-step onboarding wizard with progress bar and step navigation.

Preview

Set up profile

Tell us about yourself.

Profile form placeholder
Step 1 of 3
Onboarding Wizard.tsx
import { OnboardingWizard } from "@launchapp/design-system/blocks/onboarding";const steps = [  { id: "profile", title: "Set up profile", description: "Tell us about yourself.", content: <div>Profile form</div> },  { id: "team", title: "Invite team", description: "Add your teammates.", content: <div>Invite form</div> },  { id: "done", title: "You're all set!", description: "Start using the app.", content: <div>Completion screen</div> },];export default function Page() {  return (    <OnboardingWizard      steps={steps}      onComplete={() => console.log("done")}      allowSkip    />  );}

Welcome Screen

Full-screen welcome splash with branding, tagline, and get-started CTA.

Preview

No preview available

See the code snippet below for usage.

Welcome Screen.tsx
import { WelcomeScreen } from "@launchapp/design-system/blocks/onboarding";export default function Page() {  return (    <WelcomeScreen      productName="LaunchApp"      tagline="Build your SaaS faster"      onGetStarted={() => console.log("get started")}    />  );}

Onboarding Checklist

Progress checklist of setup tasks with completion tracking.

Preview
Onboarding Checklist.tsx
import { OnboardingChecklist } from "@launchapp/design-system/blocks/onboarding";const tasks = [  { id: "profile", title: "Complete your profile", completed: true, href: "/settings/profile" },  { id: "team", title: "Invite teammates", completed: false, href: "/team/invite" },  { id: "billing", title: "Set up billing", completed: false, href: "/billing" },];export default function Page() {  return <OnboardingChecklist tasks={tasks} onComplete={(id) => console.log("complete", id)} />;}

Setup Wizard

Guided setup wizard with branching steps and completion confirmation.

Preview

No preview available

See the code snippet below for usage.

Setup Wizard.tsx
import { SetupWizard } from "@launchapp/design-system/blocks/onboarding";const steps = [  { id: "workspace", title: "Create workspace", content: <div>Workspace form</div> },  { id: "integrations", title: "Connect tools", content: <div>Integrations form</div> },];export default function Page() {  return <SetupWizard steps={steps} onFinish={() => console.log("finish")} />;}

Team Invite Flow

Multi-step flow for inviting team members with role assignment.

Preview

No preview available

See the code snippet below for usage.

Team Invite Flow.tsx
import { TeamInviteFlow } from "@launchapp/design-system/blocks/onboarding";export default function Page() {  return (    <TeamInviteFlow      roles={["admin", "member", "viewer"]}      onInvite={(invites) => console.log("invite", invites)}      onSkip={() => console.log("skip")}    />  );}

Goal Setup Wizard

Goal-setting wizard for personalizing the onboarding experience.

Preview

No preview available

See the code snippet below for usage.

Goal Setup Wizard.tsx
import { GoalSetupWizard } from "@launchapp/design-system/blocks/onboarding";const goals = [  { id: "launch", label: "Launch my product", icon: <span>🚀</span> },  { id: "grow", label: "Grow my team", icon: <span>👥</span> },  { id: "automate", label: "Automate workflows", icon: <span>⚙️</span> },];export default function Page() {  return (    <GoalSetupWizard      goals={goals}      onComplete={(selected) => console.log("goals", selected)}    />  );}

Progress Checklist

Checklist widget with percentage progress bar and item completion.

Preview

Overall Progress

2 of 5 tasks complete

40%

Getting started

2/3

Next steps

0/2
Progress Checklist.tsx
import { ProgressChecklist } from "@launchapp/design-system/blocks/onboarding";const items = [  { id: "1", label: "Create account", completed: true },  { id: "2", label: "Verify email", completed: true },  { id: "3", label: "Set up workspace", completed: false },  { id: "4", label: "Invite team", completed: false },];export default function Page() {  return <ProgressChecklist items={items} title="Getting started" />;}

Onboarding Stepper

Step indicator showing current progress through a multi-step onboarding.

Preview

No preview available

See the code snippet below for usage.

Onboarding Stepper.tsx
import { OnboardingStepper } from "@launchapp/design-system/blocks/onboarding";const steps = [  { id: "profile", label: "Profile" },  { id: "team", label: "Team" },  { id: "billing", label: "Billing" },];export default function Page() {  return <OnboardingStepper steps={steps} currentStep={1} />;}

Welcome Wizard

Branded welcome wizard combining personalization questions and setup steps.

Preview

No preview available

See the code snippet below for usage.

Welcome Wizard.tsx
import { WelcomeWizard } from "@launchapp/design-system/blocks/onboarding";export default function Page() {  return (    <WelcomeWizard      productName="LaunchApp"      onComplete={(data) => console.log("complete", data)}    />  );}