Framed Poster HeroPRO

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.

Hero155: Framed Poster Hero

A full-bleed photograph with a hairline frame inset into it. The eyebrow and availability line sit along the top of the frame, the statement in the middle, and the paragraph, notes, CTA and image credit along 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/hero155?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

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

tsx
import { Hero155, hero155Demo } from "@/components/beste/block/hero155";

export default function Page() {
  return <Hero155 {...hero155Demo} />;
}

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

tsx
import { Hero155 } from "@/components/beste/block/hero155";

export default function Page() {
  return (
    <Hero155
      badge={{ label: "Auralis, est. 2014" }}
      heading="Printed, built and photographed by the same nine people."
      description="No production partners and no outsourced studio."
      button={{ label: "Put us on your project", href: "/contact" }}
      image={{ src: "/work/facade.jpg", alt: "Glass and steel building front" }}
      labels={{ availability: "Two slots, autumn", imageCredit: "Kestrel Group, west facade" }}
      notes={[
        { title: "Disciplines", value: "Identity, print, screen" },
        { title: "Studio", value: "Rotterdam" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringDisplay statement, rendered as the page h1
descriptionstringSupporting paragraph at the foot of the frame
buttonActionButtonOutline Button12 in the frame's bottom corner
imageHeroImageFull-bleed background photograph
notesCornerNote[][]Ruled facts under the paragraph
labelsHero155Labels{}Fixed strings that are not content: availability line and image credit
classNamestringExtra classes for the outer <section>
ts
type HeroImage = {
  src: string;
  alt: string;
};

type CornerNote = {
  title: string;
  value: string;
};

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

type Hero155Labels = {
  availability?: string;
  imageCredit?: 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

hero154

Poster Hero With Proof Card

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.

PRO

hero115

Cinematic Image Hero

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

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

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.