Editorial Split Hero

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

PRO

Hero112: Editorial Split Hero

Studio-style two-column hero: an eyebrow label, a two-line, two-tone headline (bold black text with a muted second line), a short paragraph, a primary pill button plus a bordered secondary link, and a tall portrait image on the other side. A client wordmark strip runs beneath the fold once a logo list is supplied.

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

Base UI flavor

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

This installs the block to components/beste/block/hero112.tsx, the badge6 component it uses for the eyebrow label, the button1 component it uses for the primary CTA pill, and their dependencies.

Quick start

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

tsx
import { Hero112, hero112Demo } from "@/components/beste/block/hero112";

export default function Page() {
  return <Hero112 {...hero112Demo} />;
}

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

tsx
import { Hero112 } from "@/components/beste/block/hero112";

export default function Page() {
  return (
    <Hero112
      label="Independent Studio"
      heading="We design brands<br /><strong>that outlast trends</strong>."
      description="A small studio for founders who want the work to speak first."
      buttons={[
        { label: "Start a project", href: "https://beste.co", variant: "primary" },
        { label: "View our work", href: "https://beste.co", variant: "outline" },
      ]}
      image={{
        src: "https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=900&h=1200&fit=crop",
        alt: "Studio team reviewing a brand direction",
      }}
      clientsLabel="Trusted by"
      clients={["Lumen", "Verdant", "Orbit"]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered through Badge6
headingstringHeadline HTML; wrap a phrase in <strong> to render it muted, and use <br /> for a manual line break
descriptionstringSupporting paragraph, capped at max-w-md
buttonsButtonItem[][]CTA row; primary renders as a solid pill, outline as a bordered link
imageImageItemTall portrait image for the opposite column
clientsLabelstringLabel prefixing the client wordmark strip (for example "Trusted by")
clientsstring[][]Client/brand names rendered as plain text wordmarks
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href: string;
  variant?: "primary" | "outline";
};

type ImageItem = {
  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

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.

PRO

hero35

Split Hero with Video Player

Two-column hero with playable video (or image), play button overlay, and key stats row. Perfect for product demos and feature announcements.