A workflow that scores each stage on how much of it runs unattended, drawing an accent bar per stage and naming what still needs a person, against a sticky column with one headline figure and a live stage tracker.
A workflow that scores each stage on how much of it runs unattended, drawing an accent bar per stage and naming what still needs a person, against a sticky column with one headline figure and a live stage tracker.
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.
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
npx shadcn add "https://ui.beste.co/r/workflow51?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/workflow51?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/workflow51.tsx, the progress16 tracker piece it floats on the tile (installed to components/beste/piece/progress16.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.
The installed file exports workflow51Demo alongside the block: the exact props behind the preview above. Spread it to get a working map in one line.
import { Workflow51, workflow51Demo } from "@/components/beste/block/workflow51";
export default function AutomationPage() {
return <Workflow51 {...workflow51Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Progress16 } from "@/components/beste/piece/progress16";
import { Workflow51 } from "@/components/beste/block/workflow51";
export default function AutomationPage() {
return (
<Workflow51
badge={{ label: "Hands off, mostly" }}
heading="Which parts run themselves, and which parts still need you"
description="Where a bar is short, that is a step we have not automated yet."
headlineValue="0"
headlineLabel="times a member detail is retyped between stages"
automaticLabel="Automatic"
manualLabel="Still needs a person"
stages={[
{
stage: "First offer goes out",
description: "Real capacity is matched and the first genuine opening is sent.",
automatic: 100,
manual: "Nothing. This step has had no manual fallback for a year.",
},
{
stage: "The appointment",
description: "One record with the referral, the form, and the history on it.",
automatic: 20,
manual: "The consultation itself, and the note that comes out of it.",
},
]}
media={
<Progress16
title="Referral to invoice"
steps={["Referral", "Offer", "Intake", "Visit"]}
activeIndex={2}
caption="Three of these four stages need nobody at all."
/>
}
image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
mediaCaption="The stages a member passes through."
button={{ label: "See what is still manual", href: "/product/automation" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow above the hairline rule, rendered through Badge23 |
heading | string | – | Section heading in the left column of the header |
description | string | – | Supporting paragraph, right-aligned from md up |
headlineValue | string | – | One figure in the sticky column, at display scale |
headlineLabel | string | – | What that figure counts |
automaticLabel | string | – | Word appended to each percentage |
manualLabel | string | – | Lead-in for what still needs a person |
stages | Stage[] | [] | The stages, one hairline row each |
media | ReactNode | – | Live asset on the tile, progress16 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
mediaCaption | string | – | Caption under the tile |
button | { label: string; href: string } | – | Outline action under the stages |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type TileImage = {
src: string;
alt: string;
};
type Stage = {
stage: string;
description: string;
automatic: number;
manual: string;
};automatic is a number used both as the bar width and as the printed percentage, so the two can never disagree. It is on a 0 to 100 scale and is not normalised.manual is required on every stage, including the fully automated ones, where the demo answers "Nothing". A coverage map that omits the manual column on its best rows is the pattern this block avoids.aria-hidden, since the percentage is printed beside the stage title.lg:sticky lg:top-24 lg:self-start. The self-start is required, otherwise the column stretches to the row height and sticky has nothing to travel within.md:text-8xl, so the sticky column reads as a single claim while the stages beside it do the qualifying.1fr to 1.8fr split, giving the stages most of the width.workflow54
An integration map naming every system as a card, inverting the first-party one so it reads as the origin, then listing each crossing on a hairline row with what travels and how often.
workflow44
A sticky process overview with summary stats beside an expandable phase accordion.