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.
Onboarding screen with a single-select grid of starter templates, each card carrying an icon, title, and optional tag ("Popular", "New"); picking a card is required before the primary CTA activates.
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/onboarding20?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/onboarding20?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/onboarding20.tsx and the badge and button shadcn/ui primitives it depends on.
The installed file exports onboarding20Demo alongside the block: the exact props behind the preview above. Spread it to get a working template picker in one line.
import { Onboarding20, onboarding20Demo } from "@/components/beste/block/onboarding20";
export default function OnboardingPage() {
return <Onboarding20 {...onboarding20Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Layout, Presentation, Shapes, SquareKanban } from "lucide-react";
import { Onboarding20 } from "@/components/beste/block/onboarding20";
export default function OnboardingPage() {
return (
<Onboarding20
badge={{ label: "Get Started", variant: "secondary" }}
heading="Start with a template"
description="Pick a template to get up and running quickly."
templates={[
{ id: "blank", icon: <Shapes className="size-6" />, title: "Blank Project" },
{ id: "marketing", icon: <Presentation className="size-6" />, title: "Marketing Site", tag: "Popular" },
{ id: "dashboard", icon: <Layout className="size-6" />, title: "Dashboard" },
{ id: "kanban", icon: <SquareKanban className="size-6" />, title: "Kanban Board" },
]}
primaryButton={{ label: "Create Project", href: "/project/new" }}
secondaryButton={{ label: "Skip for now", 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 |
templates | Template[] | [] | Grid of selectable starter templates |
primaryButton | { label: string; href: string } | – | Primary CTA, disabled until a template is selected |
secondaryButton | { label: string; href: string } | – | Secondary CTA link |
labels | { stepOf?: string; blankProject?: string } | – | Template string for the step counter and a label for the blank-project option |
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 Template = {
id: string;
icon: React.ReactNode;
title: string;
tag?: string;
};useState<string | null> holds at most one selected template id, unlike the multi-select Set pattern used by the goal and interest pickers elsewhere in this family.primaryButton stays disabled until a template is selected, then navigates via a manual window.location.href = primaryButton.href inside onClick, the same pattern used by the goal and interest pickers.tag badge (e.g. "Popular", "New") is only shown while that card is unselected; selecting it swaps the tag out for a primary checkmark badge in the same top-right corner.templates.length is 3 or more, because the base layout class includes grid-cols-2 unconditionally before the sm:/lg:/md: breakpoints take over.labels.blankProject is declared in the props type but never referenced in the render; the "Blank Project" title comes from the template's own title field, not this label.onboarding16
Onboarding screen with a grid of selectable interest tags and chips for personalizing content recommendations. Perfect for content platforms, newsletters, and social apps.
onboarding25
Onboarding screen for choosing theme mode (light, dark, system) and accent color. Perfect for apps that offer visual customization as part of the onboarding experience.
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.
onboarding24
Onboarding screen displaying essential keyboard shortcuts in a grouped grid layout with key badges. Perfect for productivity tools that want to accelerate user adoption.
onboarding27
Onboarding screen with a quick survey asking how the user discovered the product, with selectable options and an optional text input. Perfect for marketing attribution during signup.
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.