Split Hero with Stats

Split hero with a big headline and CTA on the left, a divided vertical stat rail on the right, and a full-width wide image strip below.

PRO

Hero121: Split Hero with Stats

Split hero with a badge, heading, description and a single CTA in a wide left column, paired against a right-hand rail of stacked stat rows separated by top borders, closed out with a wide 21:9 image strip spanning the full width below both columns.

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/hero121?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/hero121.tsx, the badge7 eyebrow badge and button12 CTA button it renders through, and its dependencies.

Quick start

The installed file exports hero121Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.

tsx
import { Hero121, hero121Demo } from "@/components/beste/block/hero121";

export default function Page() {
  return <Hero121 {...hero121Demo} />;
}

Then replace the demo with your own props. Written out, the same setup looks like this:

tsx
import { Hero121 } from "@/components/beste/block/hero121";

export default function Page() {
  return (
    <Hero121
      badge={{ label: "Studio, est. 2014" }}
      heading="We make the work that <strong>makes the difference</strong>."
      description="A small studio of writers, designers and editors who treat brand as a craft, not a deliverable."
      button={{ label: "Book the studio", href: "https://beste.co" }}
      stats={[
        { value: "12 yrs", title: "Building brands that outlive the brief" },
        { value: "84", title: "Identities shaped end to end" },
      ]}
      imageSrc="https://images.unsplash.com/photo-1750406872634-1223dd881104?w=2000&auto=format&fit=crop"
      imageAlt="Studio workspace with desks and natural light"
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge above the heading
headingstringLarge heading; supports inline <strong> for the accent phrase
descriptionstringSupporting copy under the heading
buttonActionButtonSingle CTA rendered through Button12
statsHero121Stat[][]Stacked stat rows in the right rail
imageSrcstringWide 21:9 image below both columns
imageAltstringAlt text for the image
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Hero121Stat = { value: string; title: string };

Behavior notes

More Hero blocks

View all Hero
PRO

hero112

Editorial Split Hero

Two-column studio hero with a two-tone headline, dual CTAs, tall image and a client wordmark strip.

PRO

hero114

Collage Hero

Split studio hero with a two-tone headline and a four-image arranged collage.

PRO

hero91

Split Hero with Feature List Panel

50/50 split hero with muted content panel and feature list left, video/image right

PRO

hero102

Split Hero with Timeline Steps

50/50 split hero with content left and vertical numbered timeline overlay on video right

PRO

hero89

Reverse Split Hero with Testimonial

50/50 split hero with video/image left and content with testimonial quote right

PRO

hero143

Editorial Split Hero

A light editorial hero with an oversized display heading on the left, an offset supporting paragraph and accent button on the right, and a full-bleed image band below.