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.
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.
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
npx shadcn add "https://ui.beste.co/r/hero186?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the headline |
heading | string | – | Headline, rendered as the page h1 through Text1 |
description | string | – | Paragraph under the headline |
buttons | ActionButton[] | [] | Pill actions, wrapped and left aligned |
image | { src: string; alt: string } | – | Photograph filling the right half |
className | string | – | Extra classes for the outer <section> |
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};1.1 scale and blur(24px) on decode, with a complete check on mount because a cached image fires its load event before hydration.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.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.trigger="mount", since a hero sits above the fold, and the copy is offset from 0.4 + heading.split(" ").length * 0.07.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.hero175
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.
hero192
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.
hero181
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.
hero176
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.