Three Linked Paths

About this block

Three Linked PathsPRO

Three route cards ordered from slowest to quickest, each one a whole link with a pace label, a serif title, a paragraph and a dotted pair of details; the middle route inverts to ink to mark the usual choice.

Usecase62: Three Linked Paths

Three route cards ordered from slowest to quickest, each a whole link; the middle one inverts to ink.

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

Base UI flavor

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

This installs the block to components/beste/block/usecase62.tsx plus the text1 word stagger it uses.

Quick start

The installed file exports usecase62Demo alongside the block: the exact props behind the preview above. Spread it to get a working three Linked Paths in one line.

tsx
import { Usecase62, usecase62Demo } from "@/components/beste/block/usecase62";

export default function Page() {
  return <Usecase62 {...usecase62Demo} />;
}

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

tsx
import { Usecase62 } from "@/components/beste/block/usecase62";

export default function Page() {
  return (
    <Usecase62
      eyebrow="Where to start"
      heading="Three ways in. None of them is a commitment."
      description="People arrive at different speeds."
      paths={[
        {
          label: "Most people",
          title: "Send a note",
          description: "A practitioner replies, usually the same day.",
          points: ["Answered by a person", "No forms beyond an address"],
          linkLabel: "Write to us",
          href: "/contact",
          featured: true,
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringIntro paragraph under the heading
pathsPath[][]Linked route cards, three across from md
classNamestringExtra classes for the outer <section>
ts
type Path = {
  label: string;
  title: string;
  description: string;
  points?: string[];
  linkLabel: string;
  href: string;
  featured?: boolean;
};

Behavior notes

  • The featured card is inked from the start rather than on hover, so the recommended route is visible before anyone touches it.
  • Every colour on a featured card comes from the fixed background token set, because the surface under it is bg-foreground rather than a themed fill.
  • The block ships no pill of its own: the three cards are the action, which is why it carries text1 but not button22.
  • points is optional, so a route can be a paragraph alone without the card losing its shape.
  • The closing label is pushed to the foot by mt-auto, so three cards line their actions up.
  • The arrow lifts only under motion-safe:.

More Use Case blocks

View all Use Case
PRO

usecase57

Linked Audience Cards

Four hairline cards, each a whole link opening with a round portrait, then a quiet label, a serif title, a line of who it is for and an arrow that lifts on hover.

PRO

usecase60

Two Linked Directories

Two ruled directories side by side under their own small-caps headings, every row a link carrying a serif label, a line of context and an arrow that lifts as the row tints on hover.

PRO

usecase61

Linked Story Cards

Three case studies, each card a whole link: a photograph drifting inside its frame, a serif figure with the span it covers, the story in two sentences and an attribution facing an arrow that lifts on hover.

PRO

usecase58

Linked Setting Tiles

Six photographic tiles in a three-column grid, every one a whole link: the photograph drifts behind a gradient carrying a meta line, a serif title, a sentence of context and an arrow that lifts on hover.

PRO

usecase59

Linked Situation Rows

Five situations as ruled rows, each one a whole link: a square photograph pinned left, a serif sentence over its paragraph, and an arrow link at the right end that lifts as the row tints on hover.

PRO

usecase51

Two Route Photo Columns

Two picture-led routes side by side, each with an eyebrow, title, dotted-rule expectations list and its own pill CTA, separated on desktop by a small pill divider sitting between the columns.