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

Onboarding14: Workspace Setup with Team Invite

Single-screen setup card that combines workspace name/URL fields with a dynamic list of teammate email invites. The email rows are the only genuinely interactive part of the block: workspace name and URL are plain uncontrolled inputs whose values are never read.

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/onboarding14?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

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

tsx
import { Onboarding14, onboarding14Demo } from "@/components/beste/block/onboarding14";

export default function OnboardingPage() {
  return <Onboarding14 {...onboarding14Demo} />;
}

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

tsx
import { Onboarding14 } from "@/components/beste/block/onboarding14";

export default function OnboardingPage() {
  return (
    <Onboarding14
      badge={{ label: "Workspace", variant: "secondary" }}
      heading="Create your workspace"
      description="Set up a home for your team. You can change this later."
      primaryButton={{ label: "Create & Continue", href: "/dashboard" }}
      secondaryButton={{ label: "Skip for now", href: "/dashboard" }}
      labels={{
        workspaceName: "Workspace name",
        workspaceUrl: "Workspace URL",
        urlPrefix: "app.example.com/",
      }}
      currentStep={2}
      totalSteps={3}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small badge above the heading
headingstringMain headline
descriptionstringSupporting copy below the heading
primaryButton{ label: string; href: string }Primary CTA below the card
secondaryButton{ label: string; href: string }Secondary/outline CTA next to the primary one
labelsLabelsText overrides for every field label, placeholder, and section heading in the card
currentStepnumber1Display-only step number used in the step label
totalStepsnumber4Display-only total step count used in the step label
classNamestringExtra classes for the outer <section>
ts
type Labels = {
  stepOf?: string;
  workspaceName?: string;
  workspaceNamePlaceholder?: string;
  workspaceUrl?: string;
  workspaceUrlPlaceholder?: string;
  urlPrefix?: string;
  inviteHeading?: string;
  inviteDescription?: string;
  emailPlaceholder?: string;
  addAnother?: 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

onboarding19

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

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

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

onboarding15

Integration Connector Grid

Onboarding screen with a grid of available integrations showing connection status and connect/skip actions. Perfect for apps that rely on third-party services like Slack, GitHub, and Google.

PRO

onboarding20

Template Starter Picker

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.

PRO

onboarding26

Data Import Selector

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.