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.
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.
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/hero153?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Display statement, rendered as the page h1 |
description | string | – | Supporting paragraph under the statement |
button | ActionButton | – | Outline Button12 under the copy |
slides | HeroSlide[] | [] | Background photographs with their captions |
interval | number | 5000 | Milliseconds each slide stays on screen |
className | string | – | Extra classes for the outer <section> |
type HeroSlide = {
src: string;
alt: string;
caption: string;
};
type ActionButton = {
label: string;
href: string;
};transition-opacity duration-1000, so switching never shows a blank frame while a file downloads.interval or the slide count changes, so no stray interval survives a prop update.interval prop without touching a stylesheet.0ms duration and restarted inside a requestAnimationFrame, so it snaps back to empty instead of animating backwards.button with aria-pressed and an aria-label carrying the slide caption, so the control is usable by keyboard and screen reader rather than being a decorative dash.motion-reduce:transition-none, so a reduced-motion visitor gets the state without the sweep.bg-foreground/60 wash in fixed background tokens, correct for a surface that is a dark photograph in both themes.hero131
Full-bleed hero whose background crossfades between frames, with a clickable filmstrip of thumbnails pinned along the bottom and an auto-advancing active tile.
hero146
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.
hero115
Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.
hero133
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.