Chapter Progress Tabs Hero

Full-bleed monochrome hero with a giant bottom-left heading and a row of equal-width chapter tabs. The active chapter's thin track fills left to right over the interval, then auto-advances and crossfades the background image. Each tab links to its href.

PRO

Hero129: Chapter Progress Tabs Hero

Full-bleed monochrome hero with a giant heading pinned bottom-left over a crossfading photo background, and a row of equal-width "chapter" tabs below it. Each tab carries a number, a label, an optional caption, and a thin progress track that fills over four seconds before the hero auto-advances to the next chapter and crossfades its background image.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero129, hero129Demo } from "@/components/beste/block/hero129";

export default function Page() {
  return <Hero129 {...hero129Demo} />;
}

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

tsx
import { Hero129 } from "@/components/beste/block/hero129";

export default function Page() {
  return (
    <Hero129
      heading="Chapter by chapter."
      items={[
        {
          label: "Foundations",
          caption: "Naming, marks & systems",
          image: {
            src: "https://images.unsplash.com/photo-1558008749-f9505aabf726?w=1920&h=1200&fit=crop",
            alt: "Concrete spiral staircase seen from below",
          },
          href: "/work/foundations",
        },
        {
          label: "Surfaces",
          caption: "Space, light & material",
          image: {
            src: "https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920&h=1200&fit=crop",
            alt: "Minimal interior wall meeting a shadowed ceiling",
          },
          href: "/work/surfaces",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringGiant display heading pinned above the chapter tabs
itemsChapterItem[][]Chapters rendered as progress tabs; each drives a background image
classNamestringExtra classes for the outer <section>
ts
type ChapterItem = {
  label: string;
  caption?: string;
  image: HeroImage;
  href: string;
};

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

Behavior notes

More Hero blocks

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

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.

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.

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.

PRO

hero115

Cinematic Image Hero

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

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.