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

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

hero155

Framed Poster Hero

Full-bleed photographic hero printed inside an inset hairline frame, with the eyebrow and availability line on the top rule, an oversized statement in the middle, and notes, a pill CTA and an image credit anchored along the bottom.