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.
Full-bleed photographic hero: a gradient scrim over the image, an eyebrow above an oversized light heading, paired accent and hairline actions, and a row of three proof figures along a rule at the bottom.
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/hero146?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero146?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero146.tsx plus the button21 component it uses for the actions.
The installed file exports hero146Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero146, hero146Demo } from "@/components/beste/block/hero146";
export default function Page() {
return <Hero146 {...hero146Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero146 } from "@/components/beste/block/hero146";
export default function Page() {
return (
<Hero146
eyebrow="One workspace for care teams"
heading="The day runs quieter when everything lives in one place"
description="Intake, scheduling, records, and billing on a single surface."
buttons={[
{ label: "Book a demo", href: "/demo" },
{ label: "See the product tour", href: "/tour" },
]}
image={{ src: "/images/clinic.jpg", alt: "A clinician in a bright clinic" }}
stats={[
{ value: "240", label: "Practices running on it" },
{ value: "6.5h", label: "Given back weekly, per clinician" },
{ value: "4 weeks", label: "From signature to go-live" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Kicker above the heading |
heading | string | – | Oversized h1 over the image |
description | string | – | Supporting paragraph under the heading |
buttons | ActionLink[] | [] | Actions, the first solid and the rest hairline |
image | { src: string; alt: string } | – | Full-bleed background photo |
stats | Stat[] | [] | Proof figures under a rule at the bottom |
className | string | – | Extra classes for the outer <section> |
type ActionLink = { label: string; href: string };
type Stat = { value: string; label: string };border-background/30 override, because the component's stock outline tone is drawn for a light surface and would disappear against the photo.text-background tokens rather than the adaptive ones. It reads the same in light and dark mode by design.bg-foreground, which is what fills the area while the photo is still loading rather than flashing the page background through the scrim.py-24, md:py-40) instead of a viewport height, so a short hero never leaves a gap and a long one is never clipped.6.5h and 4 weeks need no unit prop, and the row simply does not render when stats is empty.hero115
Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.
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.
hero157
A hero that splits the viewport in two: an eyebrow, light display heading, two actions, and a hairline proof row on one side, and a full-height photo column floating a live trend metric on the other.
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.