Onboarding screen with import options from other platforms, CSV upload, and manual entry. Perfect for SaaS migration flows that help users bring existing data into the platform.
Import-source picker listing platform cards (Trello, Asana, Jira, Notion, …), an "or" divider, and two tiles for uploading a file or starting manually, all three groups sharing one selection state so only a single option can be active across the whole screen.
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/onboarding26?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/onboarding26?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/onboarding26.tsx and the badge and button shadcn/ui primitives it depends on.
The installed file exports onboarding26Demo alongside the block: the exact props behind the preview above. Spread it to get a working import selector in one line.
import { Onboarding26, onboarding26Demo } from "@/components/beste/block/onboarding26";
export default function OnboardingPage() {
return <Onboarding26 {...onboarding26Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Database } from "lucide-react";
import { Onboarding26 } from "@/components/beste/block/onboarding26";
export default function OnboardingPage() {
return (
<Onboarding26
badge={{ label: "Import", variant: "secondary" }}
heading="Bring your data"
description="Import existing data from another platform or start fresh."
sources={[
{
id: "trello",
icon: <Database className="size-5" />,
title: "Trello",
description: "Import boards, lists, and cards",
},
{
id: "notion",
icon: <Database className="size-5" />,
title: "Notion",
description: "Import pages and databases",
},
]}
primaryButton={{ label: "Continue", href: "/setup/next" }}
secondaryButton={{ label: "Start from scratch", href: "/dashboard" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Small badge above the heading |
heading | string | – | Main headline |
description | string | – | Supporting copy below the heading |
sources | ImportSource[] | [] | Platform cards for the source list |
primaryButton | { label: string; href: string } | – | Primary CTA, disabled until a selection exists |
secondaryButton | { label: string; href: string } | – | Secondary CTA link, always enabled |
labels | { stepOf?: string; orDivider?: string; uploadTitle?: string; uploadDescription?: string; uploadButton?: string; manualTitle?: string; manualDescription?: string } | – | Step template, divider text, and the two tile labels |
currentStep | number | 1 | Current step number, used only to fill the step-of label |
totalSteps | number | 4 | Total step count, used only to fill the step-of label |
className | string | – | Extra classes for the outer <section> |
type ImportSource = {
id: string;
icon: React.ReactNode;
title: string;
description: string;
};selected is one shared useState<string | null> across all three groups: platform sources, the "upload" tile, and the "manual" tile. Picking a source deselects any active tile and vice versa, only one item on the whole screen can be active at a time.setSelected(id); there is no file picker or dialog wired to the "Upload a file" tile, it behaves as a selectable card like any other.primaryButton is disabled (disabled={!selected}) until something is chosen, and its click handler runs a hard window.location.href = primaryButton.href navigation rather than rendering a <Link>, so it's a full-page redirect, not client-side routing.secondaryButton ("Start from scratch" in the demo) is always enabled and renders as a normal <Link>, bypassing the selection requirement entirely.currentStep/totalSteps only feed the static "Step of " label; there is no internal step or wizard progression in this block.onboarding17
Onboarding screen where users pick their primary goal to receive a tailored onboarding path. Each goal card shows a recommended feature set. Perfect for multi-purpose platforms.
onboarding29
Onboarding screen for collecting company information including name, team size selector chips, and industry dropdown. Perfect for B2B SaaS apps that need organizational context during setup.
onboarding32
A reversed split with an image tile floating a live import dropzone on the left, and an eyebrow, light heading, three monospace-numbered steps, and an accent button on the right.
onboarding20
Onboarding screen with a grid of starter templates to choose from, each with a preview thumbnail, title, and description. Perfect for project creation flows in design tools and project management apps.
onboarding13
Onboarding screen where users select their role or persona to personalize their experience. Each role card shows an icon, title, and description with a selectable highlight state.
onboarding16
Onboarding screen with a grid of selectable interest tags and chips for personalizing content recommendations. Perfect for content platforms, newsletters, and social apps.