Full-Bleed Canvas HeroPRO

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.

Hero157: Full-Bleed Canvas Hero

A hero split down the middle of the viewport: an eyebrow, a light display heading, two actions and a hairline proof row on one side, and a full-height photograph on the other with a live trend metric floating over it.

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/hero157?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/hero157.tsx, the stats16 trend-metric piece it floats over the photo column (installed to components/beste/piece/stats16.tsx), and the badge23 and button21 components it uses for the eyebrow and the actions.

Quick start

The installed file exports hero157Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.

tsx
import { Hero157, hero157Demo } from "@/components/beste/block/hero157";

export default function Page() {
  return <Hero157 {...hero157Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Hero157 } from "@/components/beste/block/hero157";
import { Stats16 } from "@/components/beste/piece/stats16";

export default function Page() {
  return (
    <Hero157
      badge={{ label: "Care operations" }}
      heading="The quiet system behind a busy clinic"
      description="Intake, scheduling, and follow-up on one surface, so the day runs on what your team already decided."
      buttons={[
        { label: "Book a demo", href: "/demo" },
        { label: "See how it works", href: "/product", tone: "outline" },
      ]}
      proof={[
        { value: "18 min", label: "saved per intake" },
        { value: "4 tools", label: "retired on average" },
        { value: "1 day", label: "to first live clinic" },
      ]}
      media={
        <Stats16
          label="Intakes completed"
          value="1,284"
          delta="12.4%"
          direction="up"
          caption="vs. 1,142 the month before"
          bars={[38, 52, 44, 61, 55, 72, 68, 86]}
        />
      }
      image={{ src: "/clinic/reception.jpg", alt: "A clinician in a bright clinic" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the heading, rendered through Badge23
headingstringDisplay heading, rendered as the page h1
descriptionstringSupporting paragraph under the heading, capped at max-w-md
buttonsActionLink[][]Actions in source order, each wrapping a next/link
proofProofItem[][]Figure and label pairs on the hairline row under the actions
mediaReactNodeLive asset layered over the photograph, stats16 in the demo
image{ src: string; alt: string }Photograph filling the second column
classNamestringExtra classes for the outer section
ts
type ButtonTone = "primary" | "neutral" | "outline";

type ActionLink = {
  label: string;
  href: string;
  tone?: ButtonTone;
};

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

Behavior notes

More Hero blocks

View all Hero
PRO

hero146

Full Bleed Image Hero

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.

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

hero115

Cinematic Image Hero

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

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

hero137

Slideshow Hero with Click Controls

Full-bleed monochrome hero that crossfades across a set of slides, navigated by explicit previous/next arrows and clickable dots with an auto-loop, plus a caption linking the active slide.

PRO

hero130

Monochrome Hero with Rotating Announcement Ticker

Full-bleed hero with a static background image, a giant display heading, and a slim bordered bar that auto-rotates through short, clickable announcement messages with position dots.