Split Hero with Stats

(Studio, est. 2014)

We make the work that makes the difference.

A small studio of writers, designers and editors who treat brand as a craft, not a deliverable. We build the lasting kind of work, the kind that earns its place on the page.

Book the studio
  • 12 yrsBuilding brands that outlive the brief
  • 84Identities shaped end to end
  • 9Hands on the work, no account layers
Studio workspace with desks and natural light
About this block

Split Hero with StatsPRO

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.

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.

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/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

  • Stat rows sit inside a flex flex-col justify-end list, pushing them toward the bottom of the right column so the last stat lines up with the bottom of the text column on the left.
  • Rows are separated with border-t border-border, and first:border-t-0 drops the divider on the top-most stat no matter how many entries stats holds.
  • The two-column split (lg:grid-cols-[1.5fr_1fr]) only activates at lg; below that breakpoint the stat rail simply flows underneath the heading column in document order.
  • The 21:9 image strip is a separate full-width block placed after the grid, not inside either column, and is omitted entirely when imageSrc is not set.
  • Only a single button prop is supported (not an array), so this hero always shows exactly one CTA, styled with Button12's default dark tone.

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

hero166

Split Headline Hero

An editorial hero that breaks its display heading across two lines and slots a square image tile floating a live payment card into the gap, with the paragraph and action landing under a hairline.

PRO

hero114

Collage Hero

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

PRO

hero89

Reverse Split Hero with Testimonial

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

PRO

hero91

Split Hero with Feature List Panel

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

PRO

hero156

Split Screen Panel Hero

Edge-to-edge split hero: a dark half carries the statement, paragraph, outline pill CTA and a ruled detail row, while the other half is a full-height photograph with a pill caption in its corner.