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.
A ruled list where every row is a link and hovering one fades a pinned photograph in beside it.
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/feature305?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature305?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature305.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature305Demo alongside the block: the exact props behind the preview above. Spread it to get a working hover Photo Link List in one line.
import { Feature305, feature305Demo } from "@/components/beste/block/feature305";
export default function Page() {
return <Feature305 {...feature305Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature305 } from "@/components/beste/block/feature305";
export default function Page() {
return (
<Feature305
eyebrow="Choose a practitioner"
heading="Hover a name. See the room they work in."
button={ label: "Meet everyone", href: "/people", tone: "outline" }
rows={[
{
title: "Agnes Obel",
description: "Individual therapy, grief and the years after a loss.",
href: "/people/agnes",
image: { src: "/people/agnes-room.jpg", alt: "A corner room with a low bookshelf" },
},
]}
/>
);
}| 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 |
rows | Row[] | [] | Linked rows; the first is active on load |
className | string | – | Extra classes for the outer <section> |
type Row = {
title: string;
description: string;
href: string;
image: Image;
};
type Image = { src: string; alt: string };
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};onMouseEnter and on the link's onFocus, so keyboard travel swaps the photograph exactly as the cursor does.AnimatePresence, so each swap cross-fades rather than cutting.hidden lg:block: on narrow screens the list stands on its own instead of shipping a photograph nobody can see beside it.blur(24px) on decode, with a complete check for cached files.feature280
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.
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.
feature68
Vertical feature list with horizontal dividers, hover arrows, and clickable titles linking to detail pages. Perfect for feature overviews with navigation to learn more.
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.