Center-Line Journey TimelinePRO

A feature that runs a hairline down the middle of the section and alternates its stages either side of it, dropping an image tile with a live phone frame onto the step worth showing.

Feature267: Center-Line Journey Timeline

A feature that runs a hairline down the middle of the section and alternates its stages either side of it, dropping an image tile with a live phone frame onto the step worth showing.

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

Base UI flavor

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

This installs the block to components/beste/block/feature267.tsx, the browser35 phone-frame piece it drops onto one stage (installed to components/beste/piece/browser35.tsx), and the badge23 component it uses for the eyebrow.

Quick start

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

tsx
import { Feature267, feature267Demo } from "@/components/beste/block/feature267";

export default function Page() {
  return <Feature267 {...feature267Demo} />;
}

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

tsx
import { Browser35 } from "@/components/beste/piece/browser35";
import { Feature267 } from "@/components/beste/block/feature267";

export default function Page() {
  return (
    <Feature267
      badge={{ label: "The member's side" }}
      heading="What a referral feels like from the outside"
      description="Practices rarely see their own booking journey end to end. This is the whole of it."
      entries={[
        {
          stage: "Day 0",
          title: "The referral arrives",
          description: "The letter becomes a record with a name, not a PDF someone has to retype.",
        },
        {
          stage: "Day 0",
          title: "An offer goes out the same hour",
          description: "Real capacity is matched across every site and the first genuine opening is sent.",
          media: (
            <Browser35
              time="09:41"
              title="Appointment"
              status="Confirmed"
              headline="Wednesday, 14 May · 09:00"
              rows={[{ label: "With", value: "Dr Amelia Frost" }]}
            />
          ),
          image: { src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Centered eyebrow above the heading, rendered through Badge23
headingstringSection heading, centered and capped at max-w-2xl
descriptionstringCentered supporting paragraph, capped at max-w-xl
entriesTimelineEntry[][]Stages in order, alternating sides from lg
classNamestringExtra classes for the outer section
ts
type TimelineEntry = {
  stage: string;
  title: string;
  description: string;
  media?: ReactNode;
  image?: TileImage;
};

type TileImage = {
  src: string;
  alt: string;
};

Behavior notes

More Feature blocks

View all Feature
PRO

feature263

Day Timeline Rows

A feature that walks through one working day as hairline rows stamped with the time of day, with a live approval asset dropped inline on the entry that needs showing rather than telling.

PRO

feature256

Annotated Centerpiece

A feature that centers one image tile floating a live metrics panel and annotates it from both sides with four icon callouts that collapse under the tile on smaller screens.

FREE

feature28

Process Timeline with Duration Badges

Responsive timeline showing sequential steps with icons, descriptions, and time estimates (horizontal on desktop, vertical on mobile). Perfect for onboarding flows, how-to guides, or getting-started sections.

PRO

feature222

Numbered Process Steps

Process section with a header and a vertical list of four numbered steps separated by top borders.

PRO

feature162

Numbered Steps Grid

3-column grid of numbered steps with titles and descriptions. Ideal for onboarding flows, process overviews, and how-it-works sections.

PRO

feature260

Scrolling Sequence Rail

A feature whose five steps sit on a horizontally scrolling card rail below a two-column header, each card carrying a numbered index, a title, a paragraph, and a timing note on a hairline.