Full Bleed Fact Rail HeroPRO

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.

Hero149: Full Bleed Fact Rail Hero

A full-bleed photographic hero: the picture fills the section, the statement sits at the foot with the outline CTA opposite its paragraph, and a rail of ruled facts closes the frame.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero149, hero149Demo } from "@/components/beste/block/hero149";

export default function Page() {
  return <Hero149 {...hero149Demo} />;
}

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

tsx
import { Hero149 } from "@/components/beste/block/hero149";

export default function Page() {
  return (
    <Hero149
      badge={{ label: "Commissions" }}
      heading="We photograph the work before we ever explain it."
      description="Pictures first, arguments second."
      button={{ label: "See the current work", href: "/work" }}
      image={{ src: "/studio/stairwell.jpg", alt: "Concrete stairwell lit from one window" }}
      facts={[
        { title: "Working since", value: "2014" },
        { title: "Cities", value: "Rotterdam, Lisbon" },
        { title: "Open slots", value: "Two this autumn" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringDisplay statement, rendered as the page h1
descriptionstringSupporting paragraph under the statement
buttonActionButtonOutline Button12 opposite the paragraph
imageHeroImageFull-bleed background photograph
factsHeroFact[][]Ruled fact rail at the foot of the section
classNamestringExtra classes for the outer <section>
ts
type HeroImage = {
  src: string;
  alt: string;
};

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

type ActionButton = {
  label: string;
  href: 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

hero151

Centered Photo Trust Hero

Full-bleed photographic hero with a centered statement, paragraph and outline pill CTA over a tinted scrim, closed by a ruled client logo strip rendered inverted so the marks read on the dark image.

PRO

hero148

Wide Statement Fact Hero

Photo-free hero that runs a display statement across the full width, drops the paragraph and pill CTAs onto one baseline beneath it, and closes with a ruled four-column row of studio facts.

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

hero121

Split Hero with Stats

Split hero with a big headline and CTA on the left, a divided vertical stat rail on the right, and a full-width wide image strip below.