Company Info Form

Step 2 of 4

Company

Tell us about your company

This helps us tailor the platform to your organization's needs and size.

About this block

Company Info FormPRO

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.

Onboarding29: Company Info Form

Company-details form combining a text input for company name, a row of team-size chips, an industry dropdown, and a role input, though only the team-size chips are backed by real 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.

Upgrade Now

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

Base UI flavor

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

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

Quick start

The installed file exports onboarding29Demo alongside the block: the exact props behind the preview above. Spread it to get a working company-info step in one line.

tsx
import { Onboarding29, onboarding29Demo } from "@/components/beste/block/onboarding29";

export default function OnboardingPage() {
  return <Onboarding29 {...onboarding29Demo} />;
}

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

tsx
import { Onboarding29 } from "@/components/beste/block/onboarding29";

export default function OnboardingPage() {
  return (
    <Onboarding29
      badge={{ label: "Company", variant: "secondary" }}
      heading="Tell us about your company"
      description="This helps us tailor the platform to your organization's needs."
      teamSizes={[
        { id: "solo", label: "Just me" },
        { id: "small", label: "2-10" },
        { id: "medium", label: "11-50" },
      ]}
      industries={[
        { value: "saas", label: "SaaS / Software" },
        { value: "ecommerce", label: "E-Commerce" },
        { value: "other", label: "Other" },
      ]}
      primaryButton={{ label: "Continue", href: "/setup/next" }}
      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
teamSizesTeamSize[][]Team-size chip options
industriesIndustry[][]Industry dropdown options
primaryButton{ label: string; href: string }Primary CTA link, always enabled
secondaryButton{ label: string; href: string }Secondary CTA link, always enabled
labels{ stepOf?: string; companyName?: string; companyNamePlaceholder?: string; teamSizeTitle?: string; industryTitle?: string; industryPlaceholder?: string; roleTitle?: string; rolePlaceholder?: string }Field labels, placeholders, and the step 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 TeamSize = { id: string; label: string };
type Industry = { value: string; label: string };

Behavior notes

  • Only the team-size chips are controlled (selectedSize state, single-select, toggled via setSelectedSize); the company-name Input, industry Select, and role Input are all uncontrolled and unbound to any state, so nothing typed or picked in them is captured by the component.
  • The industry Select has no value/defaultValue, so it always opens empty even though industries provides a full option list to choose from.
  • primaryButton and secondaryButton are always-enabled links regardless of whether a team size, industry, or any text field has been filled in; there is no validation gating on this screen.
  • currentStep/totalSteps only feed the static "Step of " label above the form; there is no wizard state transition tied to form completion.

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

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

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.

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

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

onboarding8

Multi-Step Form Wizard

Interactive form wizard with segmented progress bar, form fields, and back/next navigation. Perfect for account registration flows collecting user and company information.

PRO

onboarding24

Keyboard Shortcuts Cheat Sheet

Onboarding screen displaying essential keyboard shortcuts in a grouped grid layout with key badges. Perfect for productivity tools that want to accelerate user adoption.