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.
Full-bleed hero over a static photo background with a badge eyebrow, a giant display heading at the top and a large subheading toward the bottom, and a bordered ticker bar that rotates through short clickable announcement messages with position dots.
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/hero130?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero130?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero130.tsx, the badge7 component it uses for the eyebrow, and its dependencies.
The installed file exports hero130Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero130, hero130Demo } from "@/components/beste/block/hero130";
export default function Page() {
return <Hero130 {...hero130Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Hero130 } from "@/components/beste/block/hero130";
export default function Page() {
return (
<Hero130
badge={{ label: "Auralis Studio" }}
heading="A studio in monochrome."
subheading="Brand systems for the quietly ambitious."
backgroundImage={{
src: "https://images.unsplash.com/photo-1524721696987-b9527df9e512?w=1920&h=1200&fit=crop",
alt: "Empty monochrome studio interior with soft light",
}}
messages={[
{ text: "Auralis 2.0 is now open to clients", href: "/updates/auralis-2" },
{ text: "We are hiring a senior brand designer", href: "/careers" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow badge rendered above the heading, hidden when omitted |
heading | string | – | Giant display heading |
subheading | string | – | Secondary heading above the announcement ticker |
backgroundImage | HeroImage | – | Static full-bleed background photo |
messages | Announcement[] | [] | Rotating ticker entries; each is its own link |
className | string | – | Extra classes for the outer <section> |
type HeroImage = { src: string; alt: string };
type Announcement = { text: string; href: string };setInterval. All messages are always rendered inside the ticker card, but inactive ones are set to pointer-events-none absolute inset-0 opacity-0 with aria-hidden and tabIndex={-1}, so only the current message is reachable by keyboard or screen reader at any time.setActive; there is no pause state, so the four-second auto-rotation keeps running from wherever the user last clicked.bg-background panel with a border, giving it strong contrast against the photo behind it, while the badge and heading render directly on the image with a legibility gradient overlay.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.
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.
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.
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.
hero99
Cinematic fullscreen hero with scrolling marquee keyword band over inset background video
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.