How a first month goes
Nothing here is a commitment. People stop after the first hour all the time, and that is a good outcome.
Three numbered cards on a muted fill, each one a whole link that inverts to ink on hover, carrying a serif title, a paragraph of what happens at that step and a closing arrow link.
Three numbered cards on a muted fill, each a whole link that inverts to ink on hover.
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.
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
npx shadcn add "https://ui.beste.co/r/feature309?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature309?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature309.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature309Demo alongside the block: the exact props behind the preview above. Spread it to get a working linked Step Cards in one line.
import { Feature309, feature309Demo } from "@/components/beste/block/feature309";
export default function Page() {
return <Feature309 {...feature309Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature309 } from "@/components/beste/block/feature309";
export default function Page() {
return (
<Feature309
eyebrow="How a first month goes"
heading="Three steps, each with a page of its own."
description="Nothing here is a commitment."
button={ label: "Book the first hour", href: "/book" }
steps={[
{
number: "01",
title: "Send a note",
description: "A few lines about the year you are having.",
linkLabel: "What to write",
href: "/contact",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Intro paragraph under the heading |
button | ActionButton | – | Pill action centred under the cards |
steps | Step[] | [] | Linked step cards, three across from md |
className | string | – | Extra classes for the outer <section> |
type Step = {
number: string;
title: string;
description: string;
linkLabel: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};bg-muted to bg-foreground text-background on hover, and the number and description follow it through their own colour transitions so nothing lags behind.Link; linkLabel names the destination inside it rather than being a second target.mt-auto, so three cards with different copy lengths still line their actions up.md, keeping their numbers so the sequence survives on a phone.motion-safe:, while the colour inversion is left alone because it carries the affordance.0.15 per card, so the three arrive in order rather than together.feature311
Three bordered cards, each one a whole link with a photograph drifting across its top, a quiet category line, a serif title, an excerpt and an arrow pinned to the foot of the card.
feature307
Four hairline cards, each a whole link that leads with a large serif figure and an optional unit, then a title, a line of context and an arrow that lifts on hover.
feature300
Six hairline cards in a three-column grid, each one a whole link carrying a ringed icon, a serif title, a line of context and an arrow that lifts on hover, under a serif heading that settles in word by word beside a sliding-marker pill.
feature306
Two tall cards, each one a whole link: a photograph that drifts inside its frame above a quiet label, a serif title, an intro, a short dotted list and a closing arrow link pinned to the foot of the card.