Vertical Dot Pager Hero

Full-bleed hero whose background crossfades across items, steered by a minimal vertical pager pinned to the right edge. The active control grows taller while the rest stay short and dimmed; a giant heading and the clickable active item name sit bottom-left.

PRO

Hero134: Vertical Dot Pager Hero

Full-bleed hero whose background crossfades across a set of items, steered by a minimal vertical pager pinned to the right edge and vertically centered; a giant heading and the active item's clickable name sit bottom-left.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/hero134.tsx and its dependencies.

Quick start

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

tsx
import { Hero134, hero134Demo } from "@/components/beste/block/hero134";

export default function Page() {
  return <Hero134 {...hero134Demo} />;
}

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

tsx
import { Hero134 } from "@/components/beste/block/hero134";

export default function Page() {
  return (
    <Hero134
      heading="Quiet work, plainly seen."
      items={[
        {
          image: {
            src: "https://images.unsplash.com/photo-1692115345789-34b87a01f7b5?w=1920&h=1200&fit=crop",
            alt: "Concrete stair sweeping through a grey atrium",
          },
          name: "The Atrium Rebuild",
          href: "/work/atrium-rebuild",
        },
        {
          image: {
            src: "https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1920&h=1200&fit=crop",
            alt: "Bare facade of a monolithic office block",
          },
          name: "Facade Study, No. 4",
          href: "/work/facade-study",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringGiant display heading above the active item's name
itemsChapterItem[][]Items rendered as background slides and pager dots
classNamestringExtra classes for the outer <section>
ts
type ChapterItem = {
  image: HeroImage;
  name: string;
  href: string;
};

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

Behavior notes

More Hero blocks

View all Hero
PRO

hero128

Vertical Index List Hero

Full-bleed monochrome hero whose background crossfades to the active project. A giant heading sits bottom-left while a numbered vertical project index on the right highlights and swaps the active row on hover, click, or auto-loop.

PRO

hero137

Slideshow Hero with Click Controls

Full-bleed monochrome hero that crossfades across a set of slides, navigated by explicit previous/next arrows and clickable dots with an auto-loop, plus a caption linking the active slide.

FREE

hero57

Full-height Hero with Scroll Indicator

Vertically centered hero with animated scroll-down indicator featuring bouncing dot and arrow. Perfect for single-page sites and immersive landing pages.

PRO

hero131

Filmstrip Hero

Full-bleed hero whose background crossfades between frames, with a clickable filmstrip of thumbnails pinned along the bottom and an auto-advancing active tile.

PRO

hero136

Thumbnail Marquee Hero

Full-bleed hero whose background crossfades to the active item, with an auto-scrolling marquee of clickable thumbnails along the bottom and a giant heading above the strip.

PRO

hero119

Full-Bleed Display Hero

Full-bleed image hero with an oversized three-word display heading, a row of monospace meta labels, a bold sub-headline, and a featured card with thumbnail, category, paginated index, and title.