A hero with a serif headline settling in word by word, an intro and a sliding-marker pill on the left, and two offset portrait photographs on the right that drift at different speeds as the page scrolls, one sitting a step lower than the other.
Two tempos side by side: the headline, intro and pill in a wide column, and two photographs in the narrow one, the second set lower and drifting twice as far as the first.
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/hero177?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero177?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero177.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports hero177Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero177, hero177Demo } from "@/components/beste/block/hero177";
export default function Page() {
return <Hero177 {...hero177Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero177 } from "@/components/beste/block/hero177";
export default function Page() {
return (
<Hero177
eyebrow="Coaching for the in-between years"
heading="Between who you were and who you are becoming."
description="A change of work, a change of city, an ending you did not choose."
button={{ label: "Find your footing", href: "/coaching" }}
images={[
{ src: "/photos/lake.jpg", alt: "A calm lake reflecting mountains at first light" },
{ src: "/rooms/bench.jpg", alt: "A sunlit room with plaster walls and a low timber bench" },
]}
/>
);
}| 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 |
button | ActionButton | – | Pill action |
images | HeroImage[] | [] | Two photographs; only the first two are rendered |
className | string | – | Extra classes for the outer <section> |
type HeroImage = {
src: string;
alt: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};6% and 12%, which is the whole idea of the block: the pair reads as two tempos rather than as one panel cut in half.images.slice(0, 2) caps the pair at two, so a third entry is dropped rather than breaking the two-column arrangement.mt-16 rising to mt-24, and that offset applies at every width, so the stagger survives on a phone where the pair stays side by side in a two-column grid.0.2s gap between them, after the headline has settled, so the column resolves top to bottom.trigger="mount": a hero sits above the fold and a scroll trigger would never fire.0.4 + heading.split(" ").length * 0.07, matching the stagger, so it lands as the last word does.blur(24px) on decode, with a complete check on mount so a cached file is not left blurred.hero184
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.
hero191
A centred install hero that explains itself in two numbered steps under a ruled line: run the command, copied from a rounded pill on click, then ask for a page, shown as an example prompt in a muted mono panel. Serif headline settles in word by word, one sliding-marker pill below.
hero185
A centred hero with an eyebrow, a serif headline that settles in word by word, an intro and a sliding-marker pill, closed by a ruled row where greyscale partner logos drift right to left behind soft edge fades, next to a small-caps label.
hero179
A hero whose serif headline always breaks over two lines, the second one a word that takes turns, each blurring in as the last blurs out over a line kept at a fixed height, beside an intro and a sliding-marker pill, above three photographs that drift at their own pace as the page scrolls, the middle one set a step lower.