Half Photo Hero

Couples work

Twopeople,oneroom,andawaybacktoeachother.

Fortnightly sessions for couples who have stopped hearing one another. Always in the room, always seventy-five minutes, and never about deciding who is right.

A long sandy beach with a boat on the horizon
About this block

Half Photo HeroPRO

A full-height hero split down the middle: eyebrow, a serif headline that settles in word by word, an intro, two sliding-marker pills on the left, and a photograph filling the right half edge to edge that zooms out on load and drifts slower than the page.

Hero186: Half Photo Hero

A hero split down the middle: eyebrow, headline, intro and two pills on the left, and on the right a photograph filling the half edge to edge that clears from a blur on load and drifts slower than the page.

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

Base UI flavor

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

This installs the block to components/beste/block/hero186.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

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

tsx
import { Hero186, hero186Demo } from "@/components/beste/block/hero186";

export default function Page() {
  return <Hero186 {...hero186Demo} />;
}

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

tsx
import { Hero186 } from "@/components/beste/block/hero186";

export default function Page() {
  return (
    <Hero186
      eyebrow="Couples work"
      heading="Two people, one room, and a way back to each other."
      description="Fortnightly sessions for couples who have stopped hearing one another."
      buttons={[
        { label: "Book for two", href: "/couples" },
        { label: "What a session is like", href: "/first-session", tone: "outline" },
      ]}
      image={{ src: "/rooms/kitchen.jpg", alt: "A kitchen with oak cabinets and a window onto a garden" }}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the headline
headingstringHeadline, rendered as the page h1 through Text1
descriptionstringParagraph under the headline
buttonsActionButton[][]Pill actions, wrapped and left aligned
image{ src: string; alt: string }Photograph filling the right half
classNamestringExtra classes for the outer <section>
ts
type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The section has no horizontal padding of its own, so the photograph runs to the edge of the viewport; the gutter lives on the copy column instead, which is what gives the split its full-bleed look.
  • The photograph clears from a 1.1 scale and blur(24px) on decode, with a complete check on mount because a cached image fires its load event before hydration.
  • The Tailwind scale-[1.2] on the same element writes the standalone scale property, so it composes with the animated transform rather than fighting it; that extra scale is what keeps the edges covered through the 20% drift.
  • The image column is md:min-h-0 inside a md:min-h-svh grid, so it takes its height from the row rather than from a fixed value, and falls back to min-h-[24rem] on a phone where the two halves stack.
  • The headline runs with trigger="mount", since a hero sits above the fold, and the copy is offset from 0.4 + heading.split(" ").length * 0.07.
  • The copy column is vertically centred, so it stays composed whether the headline runs to two lines or four.
  • Without image the copy column simply takes the left half of the grid rather than stretching, so give the block an image whenever you want the split.

More Hero blocks

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

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

hero181

Benefits Split Hero

A split hero: eyebrow, a serif headline that settles in word by word, an intro, three ringed check benefits and a sliding-marker pill on the left, and a portrait photograph drifting inside its frame on the right.

PRO

hero176

Unveiling Hero

A centred hero: eyebrow, a serif headline settling in word by word, intro and two sliding-marker pills, then a wide photograph that unveils itself from a smaller inset frame and keeps drifting as the page scrolls, closed by a row of dotted facts.

PRO

hero182

Centred Photo Hero

A full-height photographic hero with everything centred: the photograph zooms out on load and drifts slower than the page under a dark scrim and film grain, beneath an eyebrow, a serif headline that settles in word by word, an intro and two sliding-marker pills.

PRO

hero184

Figures Hero

A text hero with an eyebrow and a serif headline that settles in word by word on the left, the intro and two sliding-marker pills on the right, and a ruled row of three serif figures that count up beneath, with no image.