Split Screen Panel HeroPRO

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.

Hero156: Split Screen Panel Hero

An edge-to-edge split: an inverted panel carrying the statement, paragraph, CTA and a ruled detail row on one half, a full-height photograph with a pill caption on the other.

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

Base UI flavor

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

This installs the block to components/beste/block/hero156.tsx plus the badge7 eyebrow and button12 pill button it uses.

Quick start

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

tsx
import { Hero156, hero156Demo } from "@/components/beste/block/hero156";

export default function Page() {
  return <Hero156 {...hero156Demo} />;
}

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

tsx
import { Hero156 } from "@/components/beste/block/hero156";

export default function Page() {
  return (
    <Hero156
      badge={{ label: "Taking commissions" }}
      heading="Half the page is the work. The other half is why."
      description="Auralis builds identity systems for companies whose product is already good."
      button={{ label: "Take the empty half", href: "/contact" }}
      image={{ src: "/work/stair.jpg", alt: "Concrete stairwell lit from a high window" }}
      labels={{ imageCaption: "Kestrel Group, north stair" }}
      details={[
        { label: "Next opening", value: "September" },
        { label: "Based in", value: "Rotterdam" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringDisplay statement, rendered as the page h1
descriptionstringSupporting paragraph under the statement
buttonActionButtonOutline Button12 under the copy
imageHeroImagePhotograph filling the other half
detailsHeroLink[][]Ruled facts pinned to the bottom of the panel
labelsHero156Labels{}Fixed strings that are not content: the image caption
classNamestringExtra classes for the outer <section>
ts
type HeroImage = {
  src: string;
  alt: string;
};

type HeroLink = {
  label: string;
  value: string;
};

type ActionButton = {
  label: string;
  href: string;
};

type Hero156Labels = {
  imageCaption?: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero84

Split Hero with Edge-to-Edge Media

50/50 split hero with content left and edge-to-edge video/image right with checklist items

PRO

hero112

Editorial Split Hero

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

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

hero91

Split Hero with Feature List Panel

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

PRO

hero94

Reverse Split Hero with Pill Grid

Reverse split hero with compact 3x2 pill grid over video left, content right

PRO

hero150

Offset Image Pair Hero

Split hero pairing a statement, paragraph and two pill CTAs with a pair of captioned portrait images, the second dropped by a stagger on desktop so the column reads as an editorial spread.