Horizontal Process Timeline

A connected left-to-right sequence of numbered project phases with a ruled timeline and step dots.

PRO

Agency22: Horizontal Process Timeline

A four-up ruled timeline of numbered project phases, each with a step number, title, and description, closing with a small caption under the row that frames the timeline's span.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/agency22.tsx, the badge7 component it uses for the eyebrow, the button12 component it uses for the CTA, and its dependencies.

Quick start

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

tsx
import { Agency22, agency22Demo } from "@/components/beste/block/agency22";

export default function ProcessPage() {
  return <Agency22 {...agency22Demo} />;
}

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

tsx
import { Agency22 } from "@/components/beste/block/agency22";

export default function ProcessPage() {
  return (
    <Agency22
      badge={{ label: "The method" }}
      heading="How a project actually moves."
      button={{ label: "Map the work", href: "https://beste.co" }}
      labels={{ timeline: "Week 01 → Launch" }}
      phases={[
        { step: "01", title: "Listen", description: "We sit with your team until the real problem surfaces." },
        { step: "02", title: "Frame", description: "Every idea gets pinned to one sentence." },
        { step: "03", title: "Make", description: "Type, motion, and code grow in the same room." },
        { step: "04", title: "Land", description: "We ship in daylight and watch the first week closely." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow rendered in Badge7; hidden entirely when omitted
headingstringSection heading, rendered with dangerouslySetInnerHTML
buttonActionButtonCTA at the header's right edge; hidden entirely when omitted
labels{ timeline: string }Caption shown under the phase row
phasesPhase[][]Timeline steps; the whole timeline block is skipped when empty
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Phase = { step: string; title: string; description: string };

Behavior notes

More Agency blocks

View all Agency
PRO

agency23

Numbered Services List

A services section with an eyebrow over a hairline rule, a two-column heading, and an editorial list of monospace-numbered service rows split into title and description.

PRO

agency21

Capabilities Accordion

Ruled, expandable capability rows with oversized type, detail copy, and monospace tag chips.

PRO

agency19

Why Polaris

A two-column comparison contrasting the Polaris way with a typical agency.

PRO

agency18

Studio Ethos

A bold ethos statement beside a list of concrete studio commitments.

PRO

agency17

Principles Selector

Interactive principle list that swaps a detail panel with image as each is hovered.

PRO

agency14

Studio Team

A studio team grid of member portraits with names and roles.