Three Phase Rollout TimelinePRO

An implementation timeline laid out as three hairline columns, each opening with a week marker over a phase title, a short explanation, and a checked deliverable list, closing on a soft summary strip.

Workflow47: Three Phase Rollout Timeline

Implementation timeline laid out as three hairline columns, each opening with a week marker over a phase title, a short explanation of what happens, and a checked list of what you get out of it, closing on a soft summary strip with the headline commitment and a CTA.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Workflow47, workflow47Demo } from "@/components/beste/block/workflow47";

export default function Page() {
  return <Workflow47 {...workflow47Demo} />;
}

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

tsx
import { Workflow47 } from "@/components/beste/block/workflow47";

export default function Page() {
  return (
    <Workflow47
      badge={{ label: "Rollout" }}
      heading="Four weeks from signature to a normal Monday"
      description="Each phase has one owner on our side and one on yours."
      items={[
        {
          duration: "Week 1",
          title: "Shape the workspace",
          description: "We map your services, rooms, and roles onto the product with you.",
          deliverables: ["Services and durations", "Rooms and locations"],
        },
        {
          duration: "Week 2",
          title: "Bring the records across",
          description: "Members and open invoices import from your export.",
          deliverables: ["Member import", "Balance reconciliation"],
        },
        {
          duration: "Weeks 3 and 4",
          title: "Train, then go live quietly",
          description: "Two short sessions per team, then one day run in parallel.",
          deliverables: ["A session per team", "Cutover checklist"],
        },
      ]}
      summary={{
        label: "Typical go-live is four weeks, without pausing a clinic day.",
        button: { label: "See a rollout plan", href: "/rollout" },
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Monospace eyebrow above the hairline rule, rendered via Badge23
headingstringSection heading in the left column
descriptionstringSupporting paragraph, right-aligned from md up
itemsPhase[][]Phase columns, in order
summary{ label: string; button: ActionLink }Soft strip under the columns
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };

type Phase = {
  duration: string;
  title: string;
  description: string;
  deliverables?: string[];
};

Behavior notes

More Workflow blocks

View all Workflow
PRO

workflow29

Engagement Timeline

Mini-gantt of engagement phases with duration bars over a week scale.

PRO

workflow28

Phase Tabs

Tabbed engagement phases with deliverables, duration and imagery.

PRO

workflow36

Process Timeline

A single-rail vertical process timeline with numbered nodes and per-step duration and owner meta.

PRO

workflow44

Overview & Phases

A sticky process overview with summary stats beside an expandable phase accordion.

PRO

workflow46

Numbered Process Steps

Left-aligned intro with eyebrow, heading and CTA beside a four-column band of numbered process steps linked by a connector line.

PRO

workflow41

Timeline Scroller

A horizontally scrollable dated milestone timeline with alternating cards on a continuous axis.