Hover Room List

Everything we offer

Hoveralinetoseetheroomithappensin.

Five kinds of work, each with its own pace and its own place. Most people start with one and drift toward another as the year goes on.

Not sure which? Ask us
About this block

Hover Room ListPRO

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.

Feature280: Hover Room List

A numbered list of everything on offer, where hovering or focusing a row swaps the sticky photograph beside it, brightens that line and slides an arrow into place.

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/feature280?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/feature280.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports feature280Demo alongside the block: the exact props behind the preview above. Spread it to get a working offerings list in one line.

tsx
import { Feature280, feature280Demo } from "@/components/beste/block/feature280";

export default function Page() {
  return <Feature280 {...feature280Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Feature280 } from "@/components/beste/block/feature280";

export default function Page() {
  return (
    <Feature280
      eyebrow="Everything we offer"
      heading="Hover a line to see the room it happens in."
      description="Five kinds of work, each with its own pace and its own place."
      button={{ label: "Not sure which? Ask us", href: "/contact", tone: "outline" }}
      items={[
        {
          title: "One-to-one therapy",
          description: "Weekly, in the room or online.",
          href: "/therapy",
          image: { src: "/rooms/bench.jpg", alt: "A sunlit room with a low timber bench" },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringShort intro in the narrow right column
buttonActionButtonPill action under the intro
itemsOffering[][]List rows; the first one's image is shown on mount
classNamestringExtra classes for the outer <section>
ts
type Offering = {
  title: string;
  description: string;
  href: string;
  image: { src: string; alt: string };
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The swap is bound to onMouseEnter and onFocus together, so tabbing through the list changes the photograph exactly as hovering does; the preview is not mouse-only.
  • The picture is keyed on the active index inside AnimatePresence, so the outgoing image cross-fades under the incoming one rather than snapping.
  • The arrow is always in the layout and animates on opacity and translate rather than being mounted and unmounted, so the row's width never changes as the selection moves.
  • Inactive titles sit at text-foreground/60 and lift to full over 500ms, which marks the current row without hiding the others.
  • Numbers come from the index, padded to two digits and set in tabular-nums, so a column of them stays aligned.
  • The photograph column is sticky top-28, so it stays beside the list for the length of the scroll; the list itself is a ul with divide-y and a border at both ends.
  • Every row is one Link, so the whole strip is the hit target and the preview is a side effect of aiming at it.

More Feature blocks

View all Feature
PRO

feature305

Hover Photo Link List

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.

PRO

feature285

Sticky Icon List

A feature list with a sticky column, where a serif heading settles in word by word above the intro and a pill action, beside ruled rows that each blur in with a round muted icon, a serif title and a description.

PRO

feature287

Photo Steps

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.

PRO

feature296

Sticky Command List

A sticky left column holds the eyebrow, a serif headline that settles in word by word, an intro, a rounded pill that copies the install command on click and a sliding-marker pill; on the right a long ruled list of numbered points settles in row by row as the page scrolls past.

PRO

feature291

Photo Tiles

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.

PRO

feature276

Sticky Chapters

A scroll-led feature: a serif heading settling in word by word beside a pill action, then numbered chapters that scroll past a pinned photograph, each one swapping the image with a soft blur and brightening its own title as it reaches the centre of the viewport.