Auto Cycling Photo HeroPRO

Full-bleed hero whose background photographs cross-fade on a timer, with a caption and bar indicators on a ruled line at the foot that also let a reader jump straight to a frame.

Hero153: Auto Cycling Photo Hero

A full-bleed hero whose background photograph cycles on a timer. The caption of the current slide sits on a rule at the foot, next to progress bars that fill across the interval and double as controls.

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

Base UI flavor

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

This installs the block to components/beste/block/hero153.tsx plus the badge7 eyebrow and button12 pill button it uses.

Quick start

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

tsx
import { Hero153, hero153Demo } from "@/components/beste/block/hero153";

export default function Page() {
  return <Hero153 {...hero153Demo} />;
}

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

tsx
import { Hero153 } from "@/components/beste/block/hero153";

export default function Page() {
  return (
    <Hero153
      badge={{ label: "In rotation" }}
      heading="The work changes every few seconds. So does the brief."
      description="A studio built for projects that refuse to sit still."
      button={{ label: "Bring us something moving", href: "/contact" }}
      interval={5000}
      slides={[
        { src: "/reel/motion.jpg", alt: "Motion frame on a studio screen", caption: "Motion study, frame 214" },
        { src: "/reel/facade.jpg", alt: "Glass and steel building front", caption: "Facade survey, Rotterdam" },
        { src: "/reel/issues.jpg", alt: "Stacked printed magazines", caption: "Six issues, one grid" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringDisplay statement, rendered as the page h1
descriptionstringSupporting paragraph under the statement
buttonActionButtonOutline Button12 under the copy
slidesHeroSlide[][]Background photographs with their captions
intervalnumber5000Milliseconds each slide stays on screen
classNamestringExtra classes for the outer <section>
ts
type HeroSlide = {
  src: string;
  alt: string;
  caption: string;
};

type ActionButton = {
  label: string;
  href: string;
};

Behavior notes

More Hero blocks

View all Hero
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

hero146

Full Bleed Image Hero

A full-bleed photographic hero with a gradient scrim, an eyebrow over an oversized light heading, paired accent and hairline actions, and a three-figure proof row along the bottom rule.

PRO

hero115

Cinematic Image Hero

Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.

PRO

hero133

Kinetic Rotating-Word Hero

Full-bleed monochrome hero with a giant headline whose final word auto-cycles through a list, plus clickable chips to pick a word and pause the rotation.

PRO

hero165

Filmstrip Hero

A centered hero closing on an edge-to-edge filmstrip of five frames divided by hairlines, one of which floats a live view switcher instead of a photograph.

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.