A practice, not a platform
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.
A hero that closes on its numbers: a wide headline beside the intro and two pills, then a ruled row of figures that count up from zero when they reach the viewport.
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/hero184?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero184?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero184.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports hero184Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero184, hero184Demo } from "@/components/beste/block/hero184";
export default function Page() {
return <Hero184 {...hero184Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero184 } from "@/components/beste/block/hero184";
export default function Page() {
return (
<Hero184
eyebrow="A practice, not a platform"
heading="Three people who will remember your name."
description="Deliberately small: three practitioners, one address, and a short waiting list."
buttons={[
{ label: "Meet us on a call", href: "/call" },
{ label: "Why we stay small", href: "/about", tone: "outline" },
]}
figures={[
{ value: 3, label: "Practitioners" },
{ value: 12, label: "Clients each, at most" },
{ value: 96, suffix: "%", label: "See the same person every session" },
]}
/>
);
}| 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 in the narrow column |
buttons | ActionButton[] | [] | Pill actions under the paragraph |
figures | Figure[] | [] | Counting figures in the ruled row |
className | string | – | Extra classes for the outer <section> |
type Figure = {
value: number;
suffix?: string;
label: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};useInView is set to once, so scrolling back up does not replay it.tabular-nums, so the row does not change width while the count climbs.suffix is a free string appended after the number, so %, + or x all work without the block parsing anything.trigger="mount", since a hero sits above the fold, and the right column waits on 0.4 + heading.split(" ").length * 0.07.sm:grid-cols-3, so three is the intended count; a fourth wraps to a new row rather than compressing the first three.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.
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.
hero186
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.
hero177
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.
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.