Split Headline HeroPRO

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.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/hero166.tsx, the receipt3 payment piece it floats on the tile (installed to components/beste/piece/receipt3.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

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

tsx
import { Hero166, hero166Demo } from "@/components/beste/block/hero166";

export default function Page() {
  return <Hero166 {...hero166Demo} />;
}

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

tsx
import { Hero166 } from "@/components/beste/block/hero166";
import { Receipt3 } from "@/components/beste/piece/receipt3";

export default function Page() {
  return (
    <Hero166
      badge={{ label: "Getting paid" }}
      headingLead="The invoice is written"
      headingTail="before the room is tidied"
      description="Charges attach themselves to the appointment that produced them, so the money side finishes when the clinic day does."
      button={{ label: "See how billing works", href: "/billing" }}
      media={
        <Receipt3
          status="Payment received"
          amount="$1,240.00"
          caption="Bramble Health · May care plan"
          rows={[
            { label: "Method", value: "Visa ending 4417" },
            { label: "Reference", value: "SIR-4821" },
          ]}
        />
      }
      image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the heading, rendered through Badge23
headingLeadstringFirst line of the heading, rendered as the page h1
headingTailstringSecond line, set beside the tile at the same size
descriptionstringParagraph under the hairline, spanning two columns
button{ label: string; href: string }Single action, right-aligned from md up
mediaReactNodeLive asset on the tile, receipt3 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type TileImage = {
  src: string;
  alt: 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

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.

PRO

hero114

Collage Hero

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

PRO

hero121

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

hero135

Editorial Split Masthead

Two-pane masthead hero: a solid dark editorial panel with eyebrow, value-prop heading, supporting copy, a CTA and an availability note on one side, and a full-bleed image on the other.

PRO

hero116

Studio Reel Hero

Editorial hero with twin vertical image marquees scrolling in opposite directions beside the headline.