Migration Risk RegisterPRO

A candid onboarding section listing what tends to go wrong on hairline rows, each with a tone-coded frequency chip, how often it has been seen, and the mitigation already in place.

Onboarding41: Migration Risk Register

A candid onboarding section listing what tends to go wrong on hairline rows, each with a tone-coded frequency chip, how often it has been seen and the mitigation already in place.

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

Base UI flavor

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

This installs the block to components/beste/block/onboarding41.tsx plus the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

The installed file exports onboarding41Demo alongside the block: the exact props behind the preview above. Spread it to get a working register in one line.

tsx
import { Onboarding41, onboarding41Demo } from "@/components/beste/block/onboarding41";

export default function RisksPage() {
  return <Onboarding41 {...onboarding41Demo} />;
}

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

tsx
import { Onboarding41 } from "@/components/beste/block/onboarding41";

export default function RisksPage() {
  return (
    <Onboarding41
      badge={{ label: "What could go wrong" }}
      heading="The risk register we would rather you read than discover"
      description="Every one of these has happened to somebody."
      likelihoodLabels={{ likely: "Common", possible: "Occasional", rare: "Rare" }}
      columns={["The risk", "How often", "What we do about it"]}
      risks={[
        {
          risk: "Rooms are named inconsistently across sites",
          likelihood: "likely",
          seen: "7 of the last 10 migrations",
          mitigation: "We reconcile room names on the mapping call rather than at go-live.",
        },
        {
          risk: "Go-live lands in the same week as an inspection",
          likelihood: "rare",
          seen: "1 of the last 10",
          mitigation: "We move the date. There is no commercial pressure to go live that week.",
        },
      ]}
      closingTitle="And if it goes wrong anyway"
      closingBody="You stop, we hand your data back, and you owe nothing."
      button={{ label: "Talk through your risks", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the hairline rule, rendered through Badge23
headingstringSection heading in the left column of the header
descriptionstringSupporting paragraph, right-aligned from md up
likelihoodLabelsRecord<Likelihood, string>The word shown on each frequency chip
columnsstring[][]Column headings, also reused as a mobile row label
risksRisk[][]The register itself
closingTitlestringHeading in the closing panel
closingBodystringWhat happens if it goes wrong regardless
button{ label: string; href: string }Closing action
classNamestringExtra classes for the outer section
ts
type Likelihood = "likely" | "possible" | "rare";

type ActionLink = {
  label: string;
  href: string;
};

type Risk = {
  risk: string;
  likelihood: Likelihood;
  seen: string;
  mitigation: string;
};

Behavior notes

More Onboarding blocks

View all Onboarding
PRO

onboarding40

Division Of Labour Table

A responsibility table grouping migration tasks into phases on hairline rows, marking each as yours, ours, or shared with a check or a dash, and totalling the customer's time in one light figure.

PRO

onboarding33

Interactive Setup Checklist

A setup panel pairing a soft progress column, where an oversized percentage and accent bar react to what is ticked, with hairline checklist rows that each carry a description and a jump-in link.

PRO

onboarding27

Attribution Survey

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.

PRO

onboarding31

Three Step Getting Started

A getting-started section with an eyebrow over a hairline rule, a two-column heading, three monospace-numbered steps under their own hairlines, and an accent button.

PRO

onboarding5

Horizontal Steps with Progress Line

Multi-step progress indicator with numbered circles connected by a progress line. Perfect for account setup wizards that show users their completion status.

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.