Spotlight and Linked Rows

About this block

Spotlight and Linked RowsPRO

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.

Feature304: Spotlight and Linked Rows

One tall photographic card beside a ruled column of three compact rows, every one of them a whole 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.

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

Base UI flavor

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

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

Quick start

The installed file exports feature304Demo alongside the block: the exact props behind the preview above. Spread it to get a working spotlight and Linked Rows in one line.

tsx
import { Feature304, feature304Demo } from "@/components/beste/block/feature304";

export default function Page() {
  return <Feature304 {...feature304Demo} />;
}

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

tsx
import { Feature304 } from "@/components/beste/block/feature304";

export default function Page() {
  return (
    <Feature304
      eyebrow="Start here"
      heading="One thing to read first, then the rest."
      button={ label: "Everything we offer", href: "/services", tone: "outline" }
      spotlight={
        label: "Most people start here",
        title: "The first hour, described honestly",
        description: "What the room looks like, and what we ask.",
        linkLabel: "Read the whole thing",
        href: "/first-hour",
        image: { src: "/rooms/first.jpg", alt: "A quiet room with two chairs" },
      }
      rowsLabel="Or go straight to"
      rows={[
        { title: "Fees and reduced rates", description: "What a season costs.", meta: "3 min", href: "/fees" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
buttonActionButtonPill action beside the heading
spotlightSpotlightThe tall photographic card on the left
rowsLabelstringQuiet line above the column of rows
rowsRow[][]Linked rows sharing the column's height
classNamestringExtra classes for the outer <section>
ts
type Spotlight = {
  label?: string;
  title: string;
  description: string;
  linkLabel: string;
  href: string;
  image: Image;
};

type Row = {
  title: string;
  description: string;
  meta?: string;
  href: string;
};

type Image = { src: string; alt: string };

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

Behavior notes

  • The spotlight and each row are separate Link elements, so one section carries four destinations with no buttons in it.
  • The rows are flex-1 inside a flex column, so they divide whatever height the spotlight sets instead of leaving a gap under the list.
  • The spotlight has a min-h-[26rem] floor, which keeps the card photographic on a phone where the row column is no longer beside it.
  • Copy on the spotlight uses the fixed text-background token because the surface under it is a photograph rather than a themed fill.
  • The gradient runs from-foreground/85 at the foot to foreground/10 at the top, dark enough for four lines of copy without flattening the photograph.
  • The spotlight and the rows use different hover groups, so the arrow in a row lifts on its own rather than with the card beside it.
  • The photograph drifts -8% to 8% against a 1.18 scale and clears from blur(24px) on decode, with a complete check for cached files.

More Feature blocks

View all Feature
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.

PRO

feature306

Two Linked Doors

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.

PRO

feature300

Linked Card Grid

Six hairline cards in a three-column grid, each one a whole link carrying a ringed icon, a serif title, a line of context and an arrow that lifts on hover, under a serif heading that settles in word by word beside a sliding-marker pill.

PRO

feature309

Linked Step Cards

Three numbered cards on a muted fill, each one a whole link that inverts to ink on hover, carrying a serif title, a paragraph of what happens at that step and a closing arrow link.

PRO

feature307

Linked Figure Cards

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.

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.