Process Weight SpectrumFREE

A process sizer that answers with a position rather than a verdict: a photographic band opens the section, four weighted questions sit beside an avatar cluster of the people a heavier answer pulls in, they add up to a score, and the band that score falls in takes the page over with its title, its summary, and the practices it asks for.

Workflow55: Process Weight Spectrum

A process sizer that answers with a position rather than a verdict. A photographic band opens the section, four weighted questions add up to a score, and the band that score lands in takes the page over with its practices.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/workflow55"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/workflow55"

That installs the block file, the badge6 eyebrow and button1 seal CTA it is built from, the socialproof24 piece it shows in the banner, and the questionnaire primitive.

Quick start

tsx
import { Workflow55, workflow55Demo } from "@/components/beste/block/workflow55";

export default function Page() {
  return <Workflow55 {...workflow55Demo} />;
}
tsx
import { Workflow55 } from "@/components/beste/block/workflow55";
import { Socialproof24 } from "@/components/beste/piece/socialproof24";

export default function Page() {
  return (
    <Workflow55
      badge={{ label: "How much process" }}
      meta="Four questions"
      heading="Most teams are running the wrong amount of process"
      description="Four questions put you somewhere on the line."
      shortcuts="numbers"
      image={{
        src: "https://images.unsplash.com/photo-1497366216548-37526070297c",
        alt: "Empty meeting room with chairs pulled back",
      }}
      aside={{
        title: "Who it ends up involving",
        note: "Every rung up the scale adds a name that has to say yes.",
        media: (
          <Socialproof24
            items={[
              {
                src: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e",
                alt: "Portrait of the engineer writing the change",
              },
              {
                src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d",
                alt: "Portrait of the approver from the platform team",
                // only the member with a name gets the tooltip
                name: "Waiting on Dana",
              },
            ]}
          />
        ),
      }}
      questions={[
        {
          name: "blast",
          title: "If this goes wrong on a Friday, who notices?",
          choices: [
            // the heaviest answer in each question sets the ceiling
            { value: "team", label: "The team, and nobody else", weight: 0 },
            { value: "customers", label: "Paying customers, immediately", weight: 4 },
          ],
        },
        {
          name: "reverse",
          title: "How hard is it to undo?",
          choices: [
            { value: "easy", label: "One command, under a minute", weight: 0 },
            { value: "never", label: "It cannot be undone", weight: 4 },
          ],
        },
      ]}
      bands={[
        {
          upTo: 20,
          title: "Just ship it",
          summary: "Nothing here justifies a process.",
          practices: ["One person writes it and one person looks at it"],
          button: { label: "See the lightweight kit", href: "https://beste.co" },
        },
        {
          upTo: 100,
          title: "Full change control",
          summary: "Irreversible and externally visible.",
          practices: ["Written change request, approved before any work starts"],
          image: {
            src: "https://images.unsplash.com/photo-1497366216548-37526070297c",
            alt: "Empty meeting room with chairs pulled back",
          },
          button: { label: "See the change control pack", href: "https://beste.co" },
        },
      ]}
      labels={{ submit: "Place me on the line", railTitle: "How much process this needs" }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow above the rule, rendered with Badge6.
metastringShort line beside the eyebrow, across the hairline divider.
headingstringSection heading.
descriptionstringSection description under the heading.
questionsWeightQuestion[][]The questions. Every choice carries the weight it adds.
shortcuts"letters" | "numbers"Prints a shortcut on every choice of the active question.
bandsBand[][]Read in order; the first band whose upTo covers the score wins. Each one is a rung on the ledger.
imageBandImageBand across the top, shown until the score is placed.
asideAsideSmall banner beside the questions: a label, a piece, and a line under it.
labelsWorkflow55Labels{}Overrides for the buttons, the rail heading, and the score line.
classNamestringMerged onto the section element.
ts
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type BandImage = { src: string; alt: string };

type WeightQuestion = {
  name: string;
  title: string;
  description?: string;
  choices?: WeightChoice[];
};

type WeightChoice = {
  value: string;
  label: string;
  description?: string;
  weight: number;
};

type Aside = {
  title?: string;
  note?: string;
  media?: ReactNode;
};

type Band = {
  upTo: number;
  title: string;
  summary: string;
  practices?: string[];
  image?: BandImage;
  button?: ActionButton;
};

type Workflow55Labels = {
  previous?: string;
  next?: string;
  submit?: string;
  restart?: string;
  railTitle?: string;
  scoreLabel?: string;
  practicesTitle?: string;
};

Behavior notes

More Workflow blocks

View all Workflow
PRO

workflow45

Process Metrics

Each process stage paired with a prominent SLA-style metric.

PRO

workflow27

Process Ascent

Ascending-staircase process timeline where each phase climbs above the last, with oversized index numerals, cadence labels and per-phase deliverables.

PRO

workflow38

Cascade Process

Process steps cascading in a diagonal staircase with connecting markers.

PRO

workflow26

Process Flow

Horizontal connected process steps with numbered nodes on a continuous rail.

PRO

workflow42

Phase Bands

Full-width phase bands anchored by oversized ghost numerals with duration meta.

PRO

workflow44

Overview & Phases

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