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.
A centred hero on a full-bleed photograph: eyebrow, statement, paragraph and outline CTA stacked in the middle of the frame, with a ruled client logo row closing the section.
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/hero151?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero151?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero151.tsx plus the badge7 eyebrow and button12 pill button it uses.
The installed file exports hero151Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero151, hero151Demo } from "@/components/beste/block/hero151";
export default function Page() {
return <Hero151 {...hero151Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero151 } from "@/components/beste/block/hero151";
export default function Page() {
return (
<Hero151
badge={{ label: "Brand and building" }}
heading="Work that has to hold up in daylight."
description="Screens forgive a lot. Walls, packaging and printed paper do not."
button={{ label: "Start a conversation", href: "/contact" }}
image={{ src: "/work/wayfinding.jpg", alt: "Wayfinding signage in a public building" }}
labels={{ logosTitle: "Recently for" }}
logos={[
{ src: "/logos/one.png", alt: "Kestrel Group" },
{ src: "/logos/two.png", alt: "Marchetti Coffee" },
]}
/>
);
}| 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 under the copy |
image | HeroImage | – | Full-bleed background photograph |
logos | Logo[] | [] | Client logo row under the rule |
labels | Hero151Labels | {} | Fixed strings that are not content: the logo row's title |
className | string | – | Extra classes for the outer <section> |
type HeroImage = {
src: string;
alt: string;
};
type Logo = {
src: string;
alt: string;
};
type ActionButton = {
label: string;
href: string;
};
type Hero151Labels = {
logosTitle?: string;
};img with an alt behind -z-10, not a CSS background, so it stays meaningful to assistive technology and image search.bg-foreground/65 wash covers the whole picture, which is what lets centred copy sit anywhere in the frame without hunting for a dark corner.justify-center with min-h-[640px] growing to md:min-h-[800px], so the copy holds the middle of the frame instead of drifting with content length.background shades rather than adaptive ones, correctly: this surface is a dark photograph in both themes, so it does not follow the theme.grayscale invert opacity-60, which turns dark client marks into light ones that sit on the picture without any of them shouting.width and height alongside h-7 w-auto, so the row reserves space before the files load and nothing jumps.border-t border-background/30, a shade of the copy colour rather than the theme border token, so the rule belongs to the picture.hero149
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.
hero36
Centered hero with gradient-highlighted heading text and trusted-by logo cloud below CTA buttons. Perfect for B2B SaaS and enterprise products.
hero120
Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.
hero144
A centered hero with an eyebrow pill, a large light heading, a supporting paragraph, two accent buttons, and a wide image tile below that floats a live product micro-asset.