Skip to main content
The PlatformOnboarding component provides a guided, multi-step onboarding flow for new businesses. It walks users through confirming their information, linking bank accounts, optionally booking an onboarding call, and viewing a summary. The onboarding steps are:
  1. Welcome - Get started introduction
  2. Business Info - Confirm business information
  3. Link Accounts - Connect bank accounts
  4. Book Onboarding Call - Schedule a call (only shown if a Calendly URL is configured for the business)
  5. Summary - Review and complete
import { PlatformOnboarding } from '@layerfi/components'

<PlatformOnboarding
  onComplete={() => {
    navigate('/dashboard')
  }}
/>

Properties

onComplete
() => void
Callback triggered when the user completes the final step of the onboarding wizard. Use this to navigate the user to the next part of your application.