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.

PRO

Hero137: Slideshow Hero with Click Controls

Full-bleed monochrome hero that crossfades across a set of slides, navigated by explicit previous/next arrow buttons and a row of clickable dots, with an automatic loop running underneath and a caption tying the active slide's category and name to a position counter.

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

Base UI flavor

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

This installs the block to components/beste/block/hero137.tsx, the button12 component it uses for the CTA, and its dependencies.

Quick start

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

tsx
import { Hero137, hero137Demo } from "@/components/beste/block/hero137";

export default function Page() {
  return <Hero137 {...hero137Demo} />;
}

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

tsx
import { Hero137 } from "@/components/beste/block/hero137";

export default function Page() {
  return (
    <Hero137
      heading="Work that holds its shape in any light."
      button={{ label: "See the full catalogue", href: "/work" }}
      items={[
        {
          image: {
            src: "https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1920&h=1200&fit=crop",
            alt: "Concrete stairwell lit from a single window",
          },
          category: "Spatial study",
          name: "Margin House",
          href: "/work/margin-house",
        },
        {
          image: {
            src: "https://images.unsplash.com/photo-1493934558415-9d19f0b2b4d2?w=1920&h=1200&fit=crop",
            alt: "Folded paper sculpture in soft shadow",
          },
          category: "Object",
          name: "Fold No. 4",
          href: "/work/fold-no-4",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringGiant display heading below the slide caption
buttonActionButtonCTA rendered next to the slideshow controls
itemsSlideItem[][]Slides rendered as crossfading backgrounds with captions
classNamestringExtra classes for the outer <section>
ts
type ActionButton = { label: string; href: string };

type SlideItem = {
  image: HeroImage;
  category: string;
  name: string;
  href: string;
};

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

Behavior notes

More Hero blocks

View all Hero
PRO

hero127

Slideshow Hero with Background Crossfade

Full-bleed background-driven slideshow hero. The active item's image fills the section and crossfades on selection, with a giant fixed heading and a floating card whose thumbnail, category, numbered pagination, name, and location swap to match the active slide. Auto-loops.

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

hero140

Animated Tab Hero

Full-bleed monochrome hero with a giant heading and a row of clickable tab chips that fade between text panels (title, description, stat), auto-advancing on a timer with no background swap.

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

hero130

Monochrome Hero with Rotating Announcement Ticker

Full-bleed hero with a static background image, a giant display heading, and a slim bordered bar that auto-rotates through short, clickable announcement messages with position dots.

PRO

hero134

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.