Hover Photo Link List

About this block

Hover Photo Link ListPRO

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/feature305?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
buttonActionButtonPill action beside the heading
rowsRow[][]Linked rows; the first is active on load
classNamestringExtra classes for the outer <section>
ts
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";
};

Behavior notes

  • The active row is tracked on the list item's onMouseEnter and on the link's onFocus, so keyboard travel swaps the photograph exactly as the cursor does.
  • Resting titles sit at half opacity and the active one at full, which points at the current row without moving anything.
  • The photograph is keyed on the active index inside AnimatePresence, so each swap cross-fades rather than cutting.
  • The pinned panel is hidden lg:block: on narrow screens the list stands on its own instead of shipping a photograph nobody can see beside it.
  • The first row is active on load, so the panel is never empty before the first hover.
  • Photos clear from blur(24px) on decode, with a complete check for cached files.

More Feature blocks

View all Feature
PRO

feature280

Hover Room List

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.

PRO

feature304

Spotlight and Linked Rows

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.

PRO

feature68

Linked Feature List with Dividers

Vertical feature list with horizontal dividers, hover arrows, and clickable titles linking to detail pages. Perfect for feature overviews with navigation to learn more.

PRO

feature303

Sticky Header Linked Cards

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.

PRO

feature302

Grouped Link Columns

Three columns of ruled links under their own small-caps headings, each link a serif label over a line of context that fades on hover, so a whole directory of pages sits in one section under a heading that settles in word by word.

PRO

feature311

Linked Photo Cards

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.