Full Bleed Image Hero

A healthcare professional smiling in a bright clinic

One workspace for care teams

The day runs quieter when everything lives in one place

Intake, scheduling, records, and billing on a single surface, so your team spends the morning with members instead of with tabs.

240

Practices running on it

6.5h

Given back weekly, per clinician

4 weeks

From signature to go-live

About this block

Full Bleed Image HeroPRO

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.

Hero146: Full Bleed Image Hero

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/hero146?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringKicker above the heading
headingstringOversized h1 over the image
descriptionstringSupporting paragraph under the heading
buttonsActionLink[][]Actions, the first solid and the rest hairline
image{ src: string; alt: string }Full-bleed background photo
statsStat[][]Proof figures under a rule at the bottom
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };

type Stat = { value: string; label: string };

Behavior notes

  • Button tone is decided by position, not by data: index 0 renders solid accent and every other button gets the hairline outline restyled for a dark surface. Order the array to match the emphasis you want.
  • Those outline buttons take a border-background/30 override, because the component's stock outline tone is drawn for a light surface and would disappear against the photo.
  • This is a fixed dark surface, so its copy uses the fixed text-background tokens rather than the adaptive ones. It reads the same in light and dark mode by design.
  • The section itself carries bg-foreground, which is what fills the area while the photo is still loading rather than flashing the page background through the scrim.
  • The scrim is a three-stop gradient, heaviest at the bottom, so the stat row keeps its contrast over whatever part of the image ends up behind it.
  • The section sets its own generous vertical rhythm (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.
  • Stats are strings, so 6.5h and 4 weeks need no unit prop, and the row simply does not render when stats is empty.

More Hero blocks

View all Hero
PRO

hero115

Cinematic Image Hero

Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.

PRO

hero119

Full-Bleed Display Hero

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.

PRO

hero157

Full-Bleed Canvas Hero

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.

PRO

hero149

Full Bleed Fact Rail Hero

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.

PRO

hero131

Filmstrip Hero

Full-bleed hero whose background crossfades between frames, with a clickable filmstrip of thumbnails pinned along the bottom and an auto-advancing active tile.

PRO

hero186

Half Photo Hero

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.