Vertical Steps Line

A season, step by step

Twelveweeks,infivemoves.

Coaching at Altair runs as a season with a beginning, a middle and a proper end. This is the shape of it.

Start a season
  1. 01

    Before we begin

    The first call

    Twenty minutes to hear what you are circling and to say honestly whether coaching is the right tool.

  2. 02

    Week one

    A written plan

    In the first session we write down what we are working toward and how we will know. One page, in your words.

  3. 03

    Weeks two to nine

    The middle weeks

    Fortnightly sessions with a small experiment in between each. Voice notes if the week goes sideways.

  4. 04

    Week ten

    Revisiting the plan

    We read the page from week one together and change whatever no longer fits. Most plans move.

  5. 05

    Week twelve

    Ending on purpose

    A closing session to name what changed and what to keep. The door stays open afterwards.

About this block

Vertical Steps LinePRO

A vertical process: a sticky column with a serif heading that settles in word by word, an intro and a pill action, beside numbered ringed steps down a line that draws itself in ink as the page scrolls, each with a small-caps timing, a serif title and a description.

Workflow59: Vertical Steps Line

A season told down a vertical line: a sticky column of heading, intro and pill beside numbered circles on a rule that draws itself downward as the steps scroll past.

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

Base UI flavor

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

This installs the block to components/beste/block/workflow59.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

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

tsx
import { Workflow59, workflow59Demo } from "@/components/beste/block/workflow59";

export default function Page() {
  return <Workflow59 {...workflow59Demo} />;
}

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

tsx
import { Workflow59 } from "@/components/beste/block/workflow59";

export default function Page() {
  return (
    <Workflow59
      eyebrow="A season, step by step"
      heading="Twelve weeks, in five moves."
      description="Coaching runs as a season with a beginning, a middle and a proper end."
      button={{ label: "Start a season", href: "/coaching" }}
      steps={[
        { title: "The first call", description: "Twenty minutes to hear what you are circling.", when: "Before we begin" },
        { title: "A written plan", description: "One page, in your words.", when: "Week one" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringIntro in the sticky column
buttonActionButtonPill action under the intro
stepsStep[][]Steps, numbered in the order given
classNamestringExtra classes for the outer <section>
ts
type Step = {
  title: string;
  description: string;
  when: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The drawn line is a second rule stacked on the static one and scaled on scaleY from a top origin, so it grows downward as a mask while the pale rule underneath stays visible as the track it fills.
  • Its progress is measured with the offset ["start 75%", "end 60%"], which finishes the line while the last step is still on screen rather than only once the list has left the viewport.
  • The numbered circles carry relative z-10 and a solid bg-background, so the line passes behind them instead of through them.
  • Steps use a tighter -20% viewport margin than the header, so each one settles once it is properly inside the reading area.
  • when is a free string printed above the title, so "Week one", "Before we begin" or a date all read naturally.
  • The list is an ol with first:pt-0 and last:pb-0, so the line starts and ends flush with the first and last circles rather than trailing past them.
  • With reduced motion the line is drawn at full height from the start, so the timeline never reads as unfinished.

More Workflow blocks

View all Workflow
PRO

workflow36

Process Timeline

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

PRO

workflow57

Three Steps Process

A how-it-works section: serif heading settling in word by word beside the intro and a pill action, three numbered steps whose top rules draw themselves in one after another, and a wide photograph drifting inside its frame to close.

PRO

workflow58

Between Sessions Line

A four-step process on one horizontal line that draws itself across the page as the steps arrive in turn, each with a ringed icon, a numeral, a serif title and a description, under a serif heading that settles in word by word beside the intro and a pill action.

PRO

workflow38

Cascade Process

Process steps cascading in a diagonal staircase with connecting markers.

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

workflow26

Process Flow

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