Daily Weekly Monthly CadencePRO

An operating rhythm split into three hairline columns for daily, weekly, and monthly routines, each row carrying its timing and either an owner or an accent chip where nobody is needed.

Workflow50: Daily Weekly Monthly Cadence

An operating rhythm split into three hairline columns for daily, weekly and monthly routines, each row carrying its timing and either an owner or an accent chip where nobody is needed.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Workflow50, workflow50Demo } from "@/components/beste/block/workflow50";

export default function RhythmPage() {
  return <Workflow50 {...workflow50Demo} />;
}

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

tsx
import { Workflow50 } from "@/components/beste/block/workflow50";

export default function RhythmPage() {
  return (
    <Workflow50
      badge={{ label: "The operating rhythm" }}
      heading="What a practice actually has to do, and how often"
      description="Three columns, and most of what sits in them runs on its own."
      automaticLabel="Automatic"
      cadences={[
        {
          label: "Every day",
          summary: "About fifteen minutes of human attention.",
          routines: [
            { when: "07:45", task: "Open the clinic list for the day", owner: "Reception" },
            {
              when: "08:00",
              task: "Reminders go out for tomorrow",
              owner: "Nobody",
              automatic: true,
            },
          ],
        },
        {
          label: "Every month",
          summary: "An afternoon at most, and it is reading rather than rebuilding.",
          routines: [
            { when: "Day 2", task: "Insurer reconciliation reviewed", owner: "Finance" },
          ],
        },
      ]}
      closing="Nine of the fourteen rows above have nobody's name against them."
      button={{ label: "See the full operating guide", href: "/docs/operating" }}
    />
  );
}

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
cadencesCadence[][]The three rhythms, one column each
automaticLabelstringThe word shown on the accent chip
closingstringParagraph beside the closing action
button{ label: string; href: string }Outline action
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type Routine = {
  when: string;
  task: string;
  owner: string;
  automatic?: boolean;
};

type Cadence = {
  label: string;
  summary: string;
  routines: Routine[];
};

Behavior notes

More Workflow blocks

View all Workflow
PRO

workflow31

Sprint Cadence

A weekly sprint rhythm shown as day columns of activities.

PRO

workflow47

Three Phase Rollout Timeline

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.

PRO

workflow36

Process Timeline

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

PRO

workflow29

Engagement Timeline

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

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

workflow32

Process Accordion

Expandable numbered process steps revealing deliverables and duration.