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.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/hero129?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Giant display heading pinned above the chapter tabs |
items | ChapterItem[] | [] | Chapters rendered as progress tabs; each drives a background image |
className | string | – | Extra classes for the outer <section> |
type ChapterItem = {
label: string;
caption?: string;
image: HeroImage;
href: string;
};
type HeroImage = { src: string; alt: string };<img> layers; only the active layer is opacity-100, and the swap between layers is a 700ms CSS opacity transition, not a hard cut.setInterval, and each tab's progress track uses a @keyframes hero129Fill animation (4000ms linear) that is force-restarted by remounting the track <div> with key={active} on every chapter change.onClick sets it active immediately (jumping the background instantly) while the surrounding Link also navigates to item.href.sm breakpoint.hero140
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.
hero137
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.
hero134
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.
hero119
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.
hero115
Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.
hero128
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.