A full-height photographic hero: the image drifts at a slower pace than the page behind a film-grain overlay, and a serif headline settles in word by word ahead of the intro, a soft pill button and an avatar trust line.
A full-height photographic hero: the picture clears from a blur and drifts at a slower pace than the page behind film grain, while the headline settles in word by word above the intro, a pill and an avatar trust line.
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/hero174?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero174?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero174.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports hero174Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero174, hero174Demo } from "@/components/beste/block/hero174";
export default function Page() {
return <Hero174 {...hero174Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero174 } from "@/components/beste/block/hero174";
export default function Page() {
return (
<Hero174
eyebrow="Therapy and coaching, Lisbon and online"
heading="Room to breathe, and a way forward."
description="A small practice for people carrying more than they can say out loud."
button={{ label: "Begin a conversation", href: "/book" }}
image={{ src: "/photos/lake.jpg", alt: "Morning mist lifting off a still lake below wooded hills" }}
avatars={[{ src: "/people/one.jpg", alt: "Portrait of a client" }]}
proof="Walking alongside 140 people this year."
/>
);
}| 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, optionally with a Lucide icon |
image | { src: string; alt: string } | – | Full-bleed background photograph |
avatars | Avatar[] | [] | Overlapping client portraits |
proof | string | – | Trust line beside the avatars |
className | string | – | Extra classes for the outer <section> |
type Avatar = {
src: string;
alt: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
icon?: LucideIcon;
};28% for the image and 12% for the text, which is what gives the section depth rather than moving it as one slab.1.12 scale and blur(24px) on decode, with a complete check on mount because a cached image fires its load event before hydration and would otherwise sit blurred forever.trigger="mount", not the component's default "view": a full-height hero is above the fold, so waiting for a scroll would leave it invisible.0.4 + heading.split(" ").length * 0.07, the same arithmetic as the stagger, so the copy lands as the last word settles however long the headline runs.object-top on the photograph keeps the horizon in frame as the parallax moves it, which a centred crop would lose.isolate context, so the image, the gradient and the grain stack correctly without escaping into the page around them.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.
hero182
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.
hero115
Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.
hero189
A full-height photographic install hero: the photo blurs in and drifts slower than the page under a scrim and film grain, a serif headline settles in word by word, then a frosted command pill that copies the install command on click, two sliding-marker pills and a short column of figures.
hero187
A centred photographic hero built around a search field: the photograph blurs in and drifts slower than the page under a dark scrim and film grain, a serif headline settles in word by word, then a rounded search field with a keyboard shortcut hint, a row of quick links and optional pills. The field can hand its click to a command palette instead of being a form.