Four linked photo tiles in a two-by-two grid, each photograph drifting inside its tile under a soft scrim with a serif title, a line of description and an arrow that lifts on hover, beneath a serif heading that settles in word by word and a sliding-marker pill.
Four photo tiles, each one a whole link: a photograph drifting behind a gradient with a serif title, a line of context and an arrow that lifts 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/feature291?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature291?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature291.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature291Demo alongside the block: the exact props behind the preview above. Spread it to get a working photo tiles in one line.
import { Feature291, feature291Demo } from "@/components/beste/block/feature291";
export default function Page() {
return <Feature291 {...feature291Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature291 } from "@/components/beste/block/feature291";
export default function Page() {
return (
<Feature291
eyebrow="Four rooms"
heading="Choose the room that fits the season."
button={{ label: "Not sure? Ask us", href: "/contact", tone: "outline" }}
tiles={[
{
title: "The front room",
description: "Individual therapy, weekly.",
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 |
button | ActionButton | – | Pill action beside the heading |
tiles | Tile[] | [] | Photo tiles, two across from sm |
className | string | – | Extra classes for the outer <section> |
type Tile = {
title: string;
description: string;
href: string;
image: { src: string; alt: string };
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link, so the entire photograph is the hit target and the arrow is decoration inside it rather than a second destination.isolate context, which keeps those layers behind the text without escaping into the section around them.from-foreground/75 at the foot to fully transparent at the top, so the title stays readable while the upper two thirds of the photograph are left alone.-8% to 8% against a 1.18 scale, so the four do not move together.index % 2, so a row of two arrives a beat apart instead of the stagger growing down the grid.blur(24px) on decode, with a complete check on mount for cached files.motion-safe:, so the hover affordance is dropped for reduced motion while the tile stays clickable.feature303
The heading, intro and pill stay pinned in a sticky column while linked photo cards scroll past in pairs beside them, each photograph drifting inside its frame under a serif title, a meta line and an arrow that lifts on hover.
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.
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.
feature4
Centered headline, four feature tiles in a 2x2 grid, and a CTA. Each tile leads with a large Lucide icon and a short description.