Profile Setup Card

Onboarding screen with a form card for setting up user profile including avatar, display name, bio, and timezone. Perfect for the personal details step in any SaaS onboarding flow.

PRO

Onboarding19: Profile Setup Card

Onboarding screen with a form-shaped card for avatar, display name, bio, and timezone. The avatar control and text inputs are visual placeholders rather than a wired-up form: nothing typed or selected is captured in component state.

Upgrade to Pro

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.

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/onboarding19?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/onboarding19?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/onboarding19.tsx and the badge, button, input, and select shadcn/ui primitives it depends on.

Quick start

The installed file exports onboarding19Demo alongside the block: the exact props behind the preview above. Spread it to get a working profile setup step in one line.

tsx
import { Onboarding19, onboarding19Demo } from "@/components/beste/block/onboarding19";

export default function OnboardingPage() {
  return <Onboarding19 {...onboarding19Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Onboarding19 } from "@/components/beste/block/onboarding19";

export default function OnboardingPage() {
  return (
    <Onboarding19
      badge={{ label: "Profile", variant: "secondary" }}
      heading="Set up your profile"
      description="Tell us a little about yourself."
      timezones={[
        { value: "utc-5", label: "Eastern Time (UTC-5)" },
        { value: "utc+0", label: "London (UTC+0)" },
        { value: "utc+3", label: "Istanbul (UTC+3)" },
        { value: "utc+9", label: "Tokyo (UTC+9)" },
      ]}
      primaryButton={{ label: "Save & Continue", href: "/onboarding/step-3" }}
      secondaryButton={{ label: "Skip for now", href: "/dashboard" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small badge above the heading
headingstringMain headline
descriptionstringSupporting copy below the heading
timezonesTimezoneOption[][]Options listed in the timezone select
primaryButton{ label: string; href: string }Primary CTA link
secondaryButton{ label: string; href: string }Secondary CTA link
labels{ stepOf?: string; avatar?: string; avatarHint?: string; displayName?: string; displayNamePlaceholder?: string; bio?: string; bioPlaceholder?: string; timezone?: string; timezonePlaceholder?: string }Field labels, placeholders, and the step counter template
currentStepnumber1Current step number, used only to fill the step-of label
totalStepsnumber4Total step count, used only to fill the step-of label
classNamestringExtra classes for the outer <section>
ts
type TimezoneOption = { value: string; label: string };

Behavior notes

Wiring the form up

This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.

More Onboarding blocks

View all Onboarding
PRO

onboarding23

Security Setup

Onboarding screen for configuring account security including two-factor authentication, recovery email, and backup codes. Perfect for apps that prioritize security during onboarding.

PRO

onboarding29

Company Info Form

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.

PRO

onboarding14

Workspace Setup with Team Invite

Combined onboarding card for creating a workspace with name and URL slug, plus a team invite section with email inputs. Perfect for SaaS apps that require team collaboration setup.

PRO

onboarding13

Role Persona Selector

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.

PRO

onboarding22

Plan Overview with Usage Limits

Onboarding screen showing current plan details with visual usage bars for storage, seats, and API calls. Perfect for SaaS post-signup flows that introduce plan limits and upgrade paths.

PRO

onboarding17

Goal Selector with Paths

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.