Centered eyebrow, oversized heading and CTA above a responsive 3-up portrait gallery with monospace captions.
Centered intro (eyebrow, heading, description, CTA) above a responsive gallery of portrait-ratio images that reflows from one column on mobile to three across on desktop, each image captioned underneath.
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/hero125?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero125?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero125.tsx, the badge7 eyebrow badge and button12 CTA button it renders through, and its dependencies.
The installed file exports hero125Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero125, hero125Demo } from "@/components/beste/block/hero125";
export default function Page() {
return <Hero125 {...hero125Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Hero125 } from "@/components/beste/block/hero125";
export default function Page() {
return (
<Hero125
badge={{ label: "Selected output" }}
heading="Proof lives in the <strong>work</strong>."
description="We don't pitch decks of promises. Three recent builds, shot exactly as they shipped."
button={{ label: "See the full archive", href: "https://beste.co" }}
images={[
{
src: "https://images.unsplash.com/photo-1734171672754-57be2280c454?w=800&auto=format&fit=crop",
alt: "Editorial brand system printed across a folded poster set",
caption: "Marble & Ash — identity",
},
{
src: "https://images.unsplash.com/photo-1602006688561-281c0241ef28?w=800&auto=format&fit=crop",
alt: "Product capsule photographed on a neutral studio sweep",
caption: "Form Supply — art direction",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow badge above the heading |
heading | string | – | Heading; supports inline <strong> for the accent phrase |
description | string | – | Supporting copy under the heading |
button | ActionButton | – | Single CTA rendered through Button12 |
images | Hero125Image[] | [] | Portrait gallery entries, each with its own caption |
className | string | – | Extra classes for the outer <section> |
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Hero125Image = { src: string; alt: string; caption: string };grid-cols-1 sm:grid-cols-2 lg:grid-cols-3, so the same images array reflows from a single column on mobile to three across at lg without any prop controlling column count directly.aspect-[3/4] portrait box with object-cover, so source photos of different native ratios still line up evenly across the grid.hero120
Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.
hero7
Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.
hero124
Studio-profile hero: an eyebrow, oversized heading, supporting copy and a CTA on the left, beside a muted stage showcasing a slider-control piece on the right.
hero80
Centered hero with inset background media and overlapping product image
hero72
Centered hero with perspective browser mockup, floating notification cards at corners, and star rating badge. Perfect for SaaS products and web apps.
hero118
Two-column hero: parenthetical eyebrow, oversized heading, supporting copy, a dark CTA and an avatar trust row on the left; a tall image on the right with a floating star-rated testimonial card overlapping its corner.