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.
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.
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/hero137?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Giant display heading below the slide caption |
button | ActionButton | – | CTA rendered next to the slideshow controls |
items | SlideItem[] | [] | Slides rendered as crossfading backgrounds with captions |
className | string | – | Extra classes for the outer <section> |
type ActionButton = { label: string; href: string };
type SlideItem = {
image: HeroImage;
category: string;
name: string;
href: string;
};
type HeroImage = { src: string; alt: string };setInterval, slower than the 4000ms interval used by the other crossfade heroes in this set, and each crossfade transition itself runs 1000ms (versus the 700ms used elsewhere).goPrev/goNext), and a row of dots lets a click jump straight to any slide; neither control pauses or resets the automatic loop timer.01 / 04-style position counter aligned to the far right.total > 1); with a single slide the hero shows just the heading and CTA with no visible controls.hero127
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.
hero136
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.
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.
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.
hero130
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.
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.