Poster Hero With Proof Card

(Poster)

One picture, one promise, one number you can hold us to.

We put the proof on the front of the page instead of burying it three sections down.

Pared-back retail interior with monochrome shelving

Marchetti Coffee, eighteen rooms

A kit local teams could apply without us, delivered with two days of training and no ongoing licence.

Studio days per opening

Down to 2

About this block

Poster Hero With Proof CardPRO

Poster-style hero where a wide cinematic image carries a soft proof card overlapping its lower corner on desktop, naming a project, what was delivered and one measured outcome.

Hero154: Poster Hero With Proof Card

A poster-scale statement over a wide photograph, with a proof card lifted into the picture's corner on desktop carrying a short case and the number behind 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/hero154?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/hero154.tsx plus the badge7 eyebrow and button12 pill button it uses.

Quick start

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

tsx
import { Hero154, hero154Demo } from "@/components/beste/block/hero154";

export default function Page() {
  return <Hero154 {...hero154Demo} />;
}

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

tsx
import { Hero154 } from "@/components/beste/block/hero154";

export default function Page() {
  return (
    <Hero154
      badge={{ label: "Poster" }}
      heading="One picture, one promise, one number you can hold us to."
      description="We put the proof on the front of the page."
      button={{ label: "See what we promised", href: "/work" }}
      image={{ src: "/work/interior.jpg", alt: "Retail interior with monochrome shelving" }}
      card={{
        title: "Marchetti Coffee, eighteen rooms",
        description: "A kit local teams could apply without us.",
        valueTitle: "Studio days per opening",
        value: "Down to 2",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringDisplay statement, rendered as the page h1
descriptionstringSupporting paragraph under the statement
buttonActionButtonPill CTA, rendered as Button12
imageHeroImageWide photograph under the copy
cardOverlayCardProof card, overlaid on the picture from md up
classNamestringExtra classes for the outer <section>
ts
type HeroImage = {
  src: string;
  alt: string;
};

type OverlayCard = {
  title: string;
  description: string;
  value: string;
  valueTitle: string;
};

type ActionButton = {
  label: string;
  href: string;
};

Behavior notes

  • The card only overlays from md up: below that it is a normal block under the picture (mt-6, no absolute positioning), so a phone never gets a card covering half the image.
  • On desktop it is pinned with md:bottom-8 md:right-8 and capped at md:max-w-sm, so a long case description grows downward instead of creeping across the photograph.
  • The card sits on bg-muted with theme tokens rather than a translucent fill, so the text stays fully legible whatever the picture behind it is doing.
  • Its figure is separated by border-t border-current/10, a shade of the card's own surface, so the rule does not read as a hard divider on a soft tile.
  • The image switches ratio rather than height: aspect-[4/3] on mobile becomes md:aspect-[21/9], keeping the poster crop cinematic without letterboxing a phone.
  • The copy block is capped at max-w-3xl while the section runs to max-w-7xl, which is what makes the statement read as a poster line rather than a full-width banner.
  • Every part is optional: without card the hero is a statement over a wide plate, and without image it is a plain poster block.

More Hero blocks

View all Hero
PRO

hero98

Cinematic Hero with Social Proof

Cinematic hero with announcement pill, avatar social proof, and overlapping dashboard media

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.

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

hero122

Typographic Card Hero

Centered typographic hero on a muted card with an oversized heading, inline CTA, and a bottom monospace meta row of three labels.

PRO

hero139

Rotating Quote Hero

Full-bleed monochrome hero with a giant display heading over a static image, paired with a card that auto-cycles through testimonials and click-to-select dots.

PRO

hero162

Indexed Rows Hero

A hero that sets a light display heading and one action against a column of numbered hairline rows, then closes on a full-bleed image band with a live approval request pinned into its corner.