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.
Full-bleed hero built from a single background photograph under a heavy legibility overlay, with an oversized display headline that scales up to text-9xl and a floating card in the bottom corner that rotates through a list of featured items on a timer, complete with clickable numbered pagination.
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/hero119?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero119?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero119.tsx and its dependencies.
The installed file exports hero119Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero119, hero119Demo } from "@/components/beste/block/hero119";
export default function Page() {
return <Hero119 {...hero119Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Hero119 } from "@/components/beste/block/hero119";
export default function Page() {
return (
<Hero119
heading="Design. Build. Ship."
subheading="Work that holds up past launch day"
backgroundImage={{
src: "https://images.unsplash.com/photo-1614998697782-ab0b6514dfb8?w=2000&auto=format&fit=crop",
alt: "Minimal modern villa exterior",
}}
items={[
{
image: {
src: "https://images.unsplash.com/photo-1607874089816-bf5af74fe2c5?w=800&auto=format&fit=crop",
alt: "Abstract brand identity visual",
},
category: "Identity",
name: "Rivermark Identity",
location: "Studio project",
href: "https://beste.co",
},
{
image: {
src: "https://images.unsplash.com/photo-1674507887748-b4ca61aa0999?w=800&auto=format&fit=crop",
alt: "Product interface close-up",
},
category: "Product",
name: "Halden Dashboard",
location: "Case study",
href: "https://beste.co",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Oversized display headline pinned to the top of the section |
subheading | string | – | Secondary headline anchored bottom-left, beside the featured card |
backgroundImage | HeroImage | – | Full-bleed background photo behind the legibility overlay |
items | FeaturedItem[] | [] | Items shown one at a time, in rotation, inside the floating card |
className | string | – | Extra classes for the outer <section> |
type HeroImage = { src: string; alt: string };
type FeaturedItem = {
image: HeroImage;
category: string;
name: string;
location: string;
href: string;
};items rotates automatically every 4000ms via a setInterval inside useEffect, advancing with (current + 1) % items.length; the effect is skipped entirely when there are 0 or 1 items, so nothing ever ticks for a single-item array.01, 02, ...) let a visitor jump straight to any item and set aria-current on the active one, but clicking does not pause or restart the 4-second auto-advance timer underneath it.bg-gradient-to-t from-foreground/70 via-foreground/20 to-foreground/40 layer sits between the photo and the text, darkest at the bottom, to keep the light heading and card readable over any image.min-h-[600px] on mobile, md:min-h-[760px]) rather than 100vh; it is not flagged fullscreen in .meta.ts, so it renders inline rather than in an iframe.justify-between: the giant heading sits at the top, the subheading and floating card sit at the bottom and only switch from stacked to a row at lg.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.
hero139
Full-bleed monochrome hero with a giant display heading over a static image, paired with a card that auto-cycles through testimonials and click-to-select dots.
hero115
Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.
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.
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.
hero141
Full-bleed monochrome hero with a giant display heading, short description, and a continuous bottom marquee of capability chips that pauses on hover.