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

Hero135: Editorial Split Masthead

Two-pane masthead hero: a solid dark editorial panel carrying an eyebrow badge, a value-prop heading, supporting copy, a CTA and an availability note on one side, and a full-bleed photo on the other. The panes swap stacking order between mobile and desktop.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero135, hero135Demo } from "@/components/beste/block/hero135";

export default function Page() {
  return <Hero135 {...hero135Demo} />;
}

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

tsx
import { Hero135 } from "@/components/beste/block/hero135";

export default function Page() {
  return (
    <Hero135
      badge={{ label: "Brand & product studio" }}
      heading="The work that makes you look inevitable."
      description="We partner with a handful of founders each year to shape the brand and product that hold together."
      button={{ label: "See if we're a fit", href: "/contact" }}
      labels={{ note: "Now booking: two studio seats open this quarter." }}
      image={{
        src: "https://images.unsplash.com/photo-1527498913931-c302284a62af?w=1200&h=1400&fit=crop",
        alt: "Studio team working at a long shared table",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge above the heading in the editorial panel
headingstringValue-prop heading
descriptionstringSupporting paragraph below the heading
buttonActionButtonCTA in the editorial panel; also gates whether labels.note renders
labelsHero135Labels{}Copy overrides for secondary text
imageHeroImageFull-bleed photo pane
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Hero135Labels = { note?: string };
type HeroImage = { src: string; alt: string };

Behavior notes

More Hero blocks

View all Hero
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

hero112

Editorial Split Hero

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

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

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

hero138

Editorial Trust Hero

Static full-bleed editorial hero with an eyebrow badge, a giant display heading, a supporting paragraph, dual seal CTAs, and an overlapping avatar trust row.