Pick a recurring slot once. It stays yours until you change it, and you can move it with a message.
Decide each week. The link and the address are both in the same reminder.
A few lines from us within a day. Yours to keep, yours to read back, never shared.
Life happens. Pause for a month or a season without losing your slot or your practitioner.
What is said in the room stays there, with the legal exceptions we explain before we start.
A feature list with a sticky column, where a serif heading settles in word by word above the intro and a pill action, beside ruled rows that each blur in with a round muted icon, a serif title and a description.
A sticky column of heading, intro and pill beside a ruled list where each row pairs a circled icon with a serif title and a short explanation.
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/feature285?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature285?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature285.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature285Demo alongside the block: the exact props behind the preview above. Spread it to get a working explainer list in one line.
import { Feature285, feature285Demo } from "@/components/beste/block/feature285";
export default function Page() {
return <Feature285 {...feature285Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature285 } from "@/components/beste/block/feature285";
export default function Page() {
return (
<Feature285
eyebrow="How it feels in practice"
heading="Everything around the hour, explained plainly."
description="The session is the centre. These are the things that hold it in place."
button={{ label: "Ask about any of these", href: "/contact", tone: "outline" }}
items={[
{ icon: CalendarDays, title: "Booking", description: "Pick a recurring slot once. It stays yours until you change it." },
{ icon: Pause, title: "Pausing", description: "Pause for a month without losing your slot or your practitioner." },
]}
/>
);
}| 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 in the sticky column |
button | ActionButton | – | Pill action under the intro |
items | Item[] | [] | Ruled rows, in the order given |
className | string | – | Extra classes for the outer <section> |
type Item = {
icon: LucideIcon;
title: string;
description: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};icon takes the Lucide component itself rather than a name string, so icons are tree-shaken with your bundle and there is no icon map to keep in sync.0.1s delay instead of a growing stagger, because a list this tall is read one row at a time and an index-scaled delay would leave the last item arriving seconds late.-15% viewport margin than the header, so an item settles once it is properly inside the reading area rather than the moment it clips the bottom edge.shrink-0, so a long title wraps under itself rather than squeezing the mark.ul with divide-y and a border at both ends, so the rules belong to the list and adding a row adds a rule.md:sticky md:top-28 and falls back to normal flow below md, where a sticky column would cover the rows.feature296
A sticky left column holds the eyebrow, a serif headline that settles in word by word, an intro, a rounded pill that copies the install command on click and a sliding-marker pill; on the right a long ruled list of numbered points settles in row by row as the page scrolls past.
feature264
A feature with a heading column that sticks while three labelled groups of checked capabilities scroll past it, closing on a footnote under a hairline.
feature227
Sticky left intro paired with a stacked, numbered list of feature blocks, each with a title, description, and small image.