Everything we offer
A ruled index of offerings beside a pinned photograph: hovering or focusing a serif line brightens it, slides an arrow into place and blurs in the photograph of the room it happens in, all under a serif heading that settles in word by word, an intro and a pill action.
A numbered list of everything on offer, where hovering or focusing a row swaps the sticky photograph beside it, brightens that line and slides an arrow into place.
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/feature280?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature280?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature280.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature280Demo alongside the block: the exact props behind the preview above. Spread it to get a working offerings list in one line.
import { Feature280, feature280Demo } from "@/components/beste/block/feature280";
export default function Page() {
return <Feature280 {...feature280Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature280 } from "@/components/beste/block/feature280";
export default function Page() {
return (
<Feature280
eyebrow="Everything we offer"
heading="Hover a line to see the room it happens in."
description="Five kinds of work, each with its own pace and its own place."
button={{ label: "Not sure which? Ask us", href: "/contact", tone: "outline" }}
items={[
{
title: "One-to-one therapy",
description: "Weekly, in the room or online.",
href: "/therapy",
image: { src: "/rooms/bench.jpg", alt: "A sunlit room with a low timber bench" },
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Short intro in the narrow right column |
button | ActionButton | – | Pill action under the intro |
items | Offering[] | [] | List rows; the first one's image is shown on mount |
className | string | – | Extra classes for the outer <section> |
type Offering = {
title: string;
description: string;
href: string;
image: { src: string; alt: string };
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};onMouseEnter and onFocus together, so tabbing through the list changes the photograph exactly as hovering does; the preview is not mouse-only.AnimatePresence, so the outgoing image cross-fades under the incoming one rather than snapping.text-foreground/60 and lift to full over 500ms, which marks the current row without hiding the others.tabular-nums, so a column of them stays aligned.sticky top-28, so it stays beside the list for the length of the scroll; the list itself is a ul with divide-y and a border at both ends.Link, so the whole strip is the hit target and the preview is a side effect of aiming at it.feature305
A ruled list where every row is a link and hovering or focusing one fades a pinned photograph in beside it, the resting rows dimmed to half so the row under the cursor is the only one at full strength.
feature285
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.
feature287
Three numbered steps in columns, each topped by a photograph that drifts inside its frame, with a serif title and a description, under a serif heading that settles in word by word and a sliding-marker pill.
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.