Hero with Portrait Gallery

Centered eyebrow, oversized heading and CTA above a responsive 3-up portrait gallery with monospace captions.

PRO

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.

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.

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/hero125?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge above the heading
headingstringHeading; supports inline <strong> for the accent phrase
descriptionstringSupporting copy under the heading
buttonActionButtonSingle CTA rendered through Button12
imagesHero125Image[][]Portrait gallery entries, each with its own caption
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Hero125Image = { src: string; alt: string; caption: string };

Behavior notes

More Hero blocks

View all Hero
PRO

hero120

Editorial Image Hero

Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.

FREE

hero7

Centered Hero with Media

Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.

PRO

hero124

Profile Hero With Chart

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.

PRO

hero80

Cinematic Hero with Overlapping Media

Centered hero with inset background media and overlapping product image

PRO

hero72

Browser Screenshot Hero with Notifications

Centered hero with perspective browser mockup, floating notification cards at corners, and star rating badge. Perfect for SaaS products and web apps.

PRO

hero118

Split Hero With Floating Review

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.