Full-bleed photographic hero with a tinted scrim, the statement and paragraph pinned to the lower half, an outline pill CTA on the same baseline and a ruled three-column fact rail closing the fold.
A full-bleed photographic hero: the picture fills the section, the statement sits at the foot with the outline CTA opposite its paragraph, and a rail of ruled facts closes the frame.
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/hero149?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero149?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero149.tsx plus the badge7 eyebrow and button12 pill button it uses.
The installed file exports hero149Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero149, hero149Demo } from "@/components/beste/block/hero149";
export default function Page() {
return <Hero149 {...hero149Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero149 } from "@/components/beste/block/hero149";
export default function Page() {
return (
<Hero149
badge={{ label: "Commissions" }}
heading="We photograph the work before we ever explain it."
description="Pictures first, arguments second."
button={{ label: "See the current work", href: "/work" }}
image={{ src: "/studio/stairwell.jpg", alt: "Concrete stairwell lit from one window" }}
facts={[
{ title: "Working since", value: "2014" },
{ title: "Cities", value: "Rotterdam, Lisbon" },
{ title: "Open slots", value: "Two this autumn" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Display statement, rendered as the page h1 |
description | string | – | Supporting paragraph under the statement |
button | ActionButton | – | Outline Button12 opposite the paragraph |
image | HeroImage | – | Full-bleed background photograph |
facts | HeroFact[] | [] | Ruled fact rail at the foot of the section |
className | string | – | Extra classes for the outer <section> |
type HeroImage = {
src: string;
alt: string;
};
type HeroFact = {
title: string;
value: string;
};
type ActionButton = {
label: string;
href: string;
};img with an alt behind -z-10, not a CSS background, so it still carries meaning for assistive technology and image search.bg-foreground/60 wash sits over the picture rather than a gradient, because content runs from the eyebrow at the top of the copy block down to the facts and needs even contrast the whole way.justify-end with min-h-[600px] growing to md:min-h-[760px], so the copy stays anchored to the bottom of the frame at any height.background shade rather than an adaptive one, which is correct here: the surface is a dark photograph in both themes, so it does not follow the theme.Badge7 is passed className="text-background/70" for the same reason, keeping the eyebrow legible on the picture.md:items-end with the button wrapper md:justify-end, so the CTA lands on the paragraph's last baseline at the right edge and drops beneath it on a phone.dl on rules of border-background/30, a shade of the copy colour rather than the theme border token, so the rail belongs to the picture.hero146
A full-bleed photographic hero with a gradient scrim, an eyebrow over an oversized light heading, paired accent and hairline actions, and a three-figure proof row along the bottom rule.
hero151
Full-bleed photographic hero with a centered statement, paragraph and outline pill CTA over a tinted scrim, closed by a ruled client logo strip rendered inverted so the marks read on the dark image.
hero148
Photo-free hero that runs a display statement across the full width, drops the paragraph and pill CTAs onto one baseline beneath it, and closes with a ruled four-column row of studio facts.
hero119
Full-bleed image hero with an oversized three-word display heading, a row of monospace meta labels, a bold sub-headline, and a featured card with thumbnail, category, paginated index, and title.