Hero with Portrait Gallery

(Selected output)

Proof lives in the work.

We don't pitch decks of promises. Three recent builds, shot exactly as they shipped, with the brief that shaped each one.

See the full archive
Editorial brand system printed across a folded poster set
Marble & Ash — identity
Product capsule photographed on a neutral studio sweep
Form Supply — art direction
Motion frames pulled from a launch film
Northbound — launch film
About this block

Hero with Portrait GalleryPRO

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.

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.

Upgrade Now

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

  • The gallery grid is 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.
  • Every image sits in a fixed aspect-[3/4] portrait box with object-cover, so source photos of different native ratios still line up evenly across the grid.
  • Captions render as plain text below each image box (not overlaid on the photo), and always show regardless of whether the image itself has loaded.
  • Gallery images are presentation-only: there is no lightbox, click handler, or wrapping link on any of them.

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.

PRO

hero159

Photo Collage Hero

A centered hero with an eyebrow, light display heading, and two actions above a staggered three-photo collage whose raised middle tile floats a live booking confirmation.

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

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.

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

hero122

Typographic Card Hero

Centered typographic hero on a muted card with an oversized heading, inline CTA, and a bottom monospace meta row of three labels.