One tall photographic card carrying the page worth reading first, beside a ruled column of three compact rows that split the remaining height evenly; every card and row is a whole link with an arrow that lifts on hover.
One tall photographic card beside a ruled column of three compact rows, every one of them a whole link.
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/feature304?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature304?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature304.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature304Demo alongside the block: the exact props behind the preview above. Spread it to get a working spotlight and Linked Rows in one line.
import { Feature304, feature304Demo } from "@/components/beste/block/feature304";
export default function Page() {
return <Feature304 {...feature304Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature304 } from "@/components/beste/block/feature304";
export default function Page() {
return (
<Feature304
eyebrow="Start here"
heading="One thing to read first, then the rest."
button={ label: "Everything we offer", href: "/services", tone: "outline" }
spotlight={
label: "Most people start here",
title: "The first hour, described honestly",
description: "What the room looks like, and what we ask.",
linkLabel: "Read the whole thing",
href: "/first-hour",
image: { src: "/rooms/first.jpg", alt: "A quiet room with two chairs" },
}
rowsLabel="Or go straight to"
rows={[
{ title: "Fees and reduced rates", description: "What a season costs.", meta: "3 min", href: "/fees" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
button | ActionButton | – | Pill action beside the heading |
spotlight | Spotlight | – | The tall photographic card on the left |
rowsLabel | string | – | Quiet line above the column of rows |
rows | Row[] | [] | Linked rows sharing the column's height |
className | string | – | Extra classes for the outer <section> |
type Spotlight = {
label?: string;
title: string;
description: string;
linkLabel: string;
href: string;
image: Image;
};
type Row = {
title: string;
description: string;
meta?: string;
href: string;
};
type Image = { src: string; alt: string };
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link elements, so one section carries four destinations with no buttons in it.flex-1 inside a flex column, so they divide whatever height the spotlight sets instead of leaving a gap under the list.min-h-[26rem] floor, which keeps the card photographic on a phone where the row column is no longer beside it.text-background token because the surface under it is a photograph rather than a themed fill.from-foreground/85 at the foot to foreground/10 at the top, dark enough for four lines of copy without flattening the photograph.-8% to 8% against a 1.18 scale and clears from blur(24px) on decode, with a complete check for cached files.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.
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.
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.
feature309
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.