Division Of Labour TablePRO

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.

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.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Onboarding40, onboarding40Demo } from "@/components/beste/block/onboarding40";

export default function ResponsibilitiesPage() {
  return <Onboarding40 {...onboarding40Demo} />;
}

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

tsx
import { Onboarding40 } from "@/components/beste/block/onboarding40";

export default function ResponsibilitiesPage() {
  return (
    <Onboarding40
      badge={{ label: "Who does what" }}
      heading="The division of labour, written down before you agree to it"
      description="Most of this is ours."
      youLabel="You"
      usLabel="Us"
      effortLabel="Effort"
      phases={[
        {
          label: "Before we start",
          tasks: [
            {
              task: "Export from your current system",
              detail: "Whatever it will give you, in whatever shape.",
              owner: "you",
              effort: "10 minutes",
            },
            {
              task: "Read the export and flag the mess",
              detail: "We open every column and come to the call with the problems listed.",
              owner: "us",
              effort: "Two days, ours",
            },
          ],
        },
        {
          label: "During the migration",
          tasks: [
            {
              task: "The mapping call",
              detail: "Agreeing what each old field becomes.",
              owner: "both",
              effort: "One hour",
            },
          ],
        },
      ]}
      totalValue="About 90 minutes"
      totalLabel="of your team's time, across the whole fortnight"
      button={{ label: "Book the mapping call", href: "/migrate" }}
    />
  );
}

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
youLabelstring"You"Column heading and mobile label for the customer column
usLabelstring"Us"Column heading and mobile label for the vendor column
effortLabelstring"Effort"Column heading and mobile label for the effort column
phasesTaskPhase[][]Task groups, each with its own banner label
totalValuestringThe headline total of customer time
totalLabelstringWhat that total covers
button{ label: string; href: string }Closing action
classNamestringExtra classes for the outer section
ts
type Owner = "you" | "us" | "both";

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

type Task = {
  task: string;
  detail: string;
  owner: Owner;
  effort: string;
};

type TaskPhase = {
  label: string;
  tasks: Task[];
};

Behavior notes

More Onboarding blocks

View all Onboarding
PRO

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.

FREE

onboarding43

Guided Workspace Setup

A two-column setup section: the pitch and what each answer changes on the left, and a one-question-at-a-time wizard on the right that ends in a review of everything it is about to create.

PRO

onboarding34

Role Based Getting Started

A getting-started section whose role pills swap a sticky summary column and the numbered steps beside it, each step carrying its own title, explanation, and honest time estimate.

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

onboarding6

Vertical Timeline Steps

Vertical timeline layout with step indicators, descriptions, and a connecting progress line. Perfect for workspace setup flows with detailed step explanations.

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.