A time-based escalation path held in a bordered panel, each rung naming the elapsed time, who joins, what changes, and the share of reports that ever reach it, beside a live card for whoever is on call.
A time-based escalation path held in a bordered panel, each rung naming the elapsed time, who joins, what changes and the share of reports that ever reach it, beside a live card for whoever is on call.
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/workflow53?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/workflow53?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/workflow53.tsx, the card31 person piece it floats on the tile (installed to components/beste/piece/card31.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.
The installed file exports workflow53Demo alongside the block: the exact props behind the preview above. Spread it to get a working ladder in one line.
import { Workflow53, workflow53Demo } from "@/components/beste/block/workflow53";
export default function EscalationPage() {
return <Workflow53 {...workflow53Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Card31 } from "@/components/beste/piece/card31";
import { Workflow53 } from "@/components/beste/block/workflow53";
export default function EscalationPage() {
return (
<Workflow53
badge={{ label: "If it goes wrong" }}
heading="What happens, and when, after an urgent report"
description="Published so you know what to expect before you need it."
triggerLabel="Starts when an urgent report arrives during opening hours"
reachedLabel="of reports get this far"
rungs={[
{
elapsed: "0 min",
who: "On-call engineer",
action: "Acknowledged",
detail: "A person, not an autoresponder, confirms they have it.",
reached: "100%",
},
{
elapsed: "60 min",
who: "A founder joins",
action: "Escalated",
detail: "Anything still open at an hour gets a second pair of eyes.",
reached: "4%",
},
]}
media={
<Card31
avatar={{ src: "/people/tom.jpg", alt: "Portrait of Tom Ashby" }}
name="Tom Ashby"
role="On call today"
status="Replying now"
availability="free"
rows={[{ label: "Shift", value: "07:00 to 15:00 UK" }]}
/>
}
image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
mediaCaption="The person who would actually pick it up right now."
button={{ label: "See the support commitments", href: "/support" }}
/>
);
}| 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 |
triggerLabel | string | – | What starts the ladder, across the panel header |
rungs | Rung[] | [] | The escalation path, soonest first |
reachedLabel | string | – | Caption under every reach percentage |
media | ReactNode | – | Live asset on the sticky tile, card31 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
mediaCaption | string | – | Caption under the tile |
button | { label: string; href: string } | – | Action in the sticky column |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type TileImage = {
src: string;
alt: string;
};
type Rung = {
elapsed: string;
who: string;
action: string;
detail: string;
reached: string;
};reached is what makes the ladder honest: it says how rarely each rung is used, so a long escalation path does not read as a promise that everything escalates.reachedLabel is stated once and reused under every figure, rather than repeated per rung.elapsed is free text, never parsed, so it can carry a duration or a phrase.elapsed and reached use tabular-nums, so their columns stay aligned down the ladder.border-b with last:border-b-0, so the ladder closes flush against the panel edge rather than drawing a rule on top of the border.bg-muted and both the panel and the media tile are bg-background, so the two objects read as raised against a soft page.lg:sticky lg:top-24 lg:self-start. The self-start is required for sticky inside a grid row.workflow27
Ascending-staircase process timeline where each phase climbs above the last, with oversized index numerals, cadence labels and per-phase deliverables.
workflow36
A single-rail vertical process timeline with numbered nodes and per-step duration and owner meta.
workflow38
Process steps cascading in a diagonal staircase with connecting markers.