Two ways to begin
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.
Two tall cards, each one a whole link: a drifting photograph, a quiet label, a serif title, a short dotted list and a closing arrow 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/feature306?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature306?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature306.tsx plus the text1 word stagger it uses.
The installed file exports feature306Demo alongside the block: the exact props behind the preview above. Spread it to get a working two Linked Doors in one line.
import { Feature306, feature306Demo } from "@/components/beste/block/feature306";
export default function Page() {
return <Feature306 {...feature306Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature306 } from "@/components/beste/block/feature306";
export default function Page() {
return (
<Feature306
eyebrow="Two ways to begin"
heading="One of these is the right first message."
doors={[
{
label: "If you are ready",
title: "Book a first hour",
description: "Sixty minutes, and nothing decided in them.",
points: ["No referral needed", "Evenings and Saturdays"],
href: "/book",
linkLabel: "Choose a time",
image: { src: "/doors/ready.jpg", alt: "A quiet room with the door ajar" },
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
doors | Door[] | [] | Linked cards, two across from md |
className | string | – | Extra classes for the outer <section> |
type Door = {
label: string;
title: string;
description: string;
points?: string[];
href: string;
linkLabel: string;
image: Image;
};
type Image = { src: string; alt: string };Link, so the closing linkLabel is a label inside the card rather than a second destination.text1 but not button22.points is optional and renders as a dotted list, so a door can be a paragraph alone when there is nothing to itemise.mt-auto, so two doors with different copy lengths still line their actions up.-8% to 8% against a 1.18 scale inside its own frame, independently per card.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.
feature304
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.
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.
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.