Split Screen Panel Hero

(Taking commissions)

Half the page is the work. The other half is why.

Auralis builds identity systems for companies whose product is already good and whose explanation is not.

Next opening
September
Based in
Rotterdam
Working across
Nine countries
Bare concrete stairwell lit from a single high window
Kestrel Group, north stair
About this block

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

  • The section has no max-w container of its own, so both halves run edge to edge; the panel supplies its own padding, which grows from px-4 to lg:px-16.
  • The panel is justify-between, so the details row stays pinned to the bottom of the split while the copy stays at the top, whatever the picture's height does.
  • The panel is a fixed inverted surface, so its text-background tokens are hardcoded rather than adaptive, and the Badge7 is passed className="text-background/70" for the same reason.
  • The photograph holds min-h-[360px] below md and releases it with md:min-h-0, so on a phone it is a proper band under the panel and on desktop it simply fills its half.
  • The caption is a pill on bg-background pinned inside the picture, inset further on desktop, so it reads as a plate on the print rather than a line under it.
  • Detail rules use border-background/30, a shade of the panel's copy colour rather than the theme border token.
  • Below md the grid collapses to one column in source order, so the copy is read before the picture.

More Hero blocks

View all Hero
PRO

hero192

Half Photo Command Hero

A full-height split install hero: text on the left with an eyebrow, a serif headline that settles in word by word, an intro, a rounded command pill that copies the install command on click and two sliding-marker pills; on the right an edge-to-edge photograph that blurs in and drifts on scroll with a small caption.

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

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

hero112

Editorial Split Hero

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

PRO

hero91

Split Hero with Feature List Panel

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

PRO

hero175

Split Portrait Hero

A light split hero: eyebrow, a serif headline settling in word by word, intro, a sliding-marker pill and a text link on the left, and a portrait photograph drifting inside its frame on the right with a frosted avatar proof card overlapping its corner, under a slowly drifting soft light.