Statement Reel Hero

Centered big-type studio hero with start and watch-the-film actions over a cinematic banner.

PRO

Hero113: Statement Reel Hero

Centered, oversized-type studio hero: an eyebrow label, a large two-tone headline, a subheading, a primary CTA and a "watch the film" trigger, sitting above a wide cinematic banner image. Either watch trigger opens a lightbox that embeds a YouTube video.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/hero113.tsx, the badge6 component it uses for the eyebrow label, the button1 component it uses for the primary CTA pill, and their dependencies.

Quick start

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

tsx
import { Hero113, hero113Demo } from "@/components/beste/block/hero113";

export default function Page() {
  return <Hero113 {...hero113Demo} />;
}

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

tsx
import { Hero113 } from "@/components/beste/block/hero113";

export default function Page() {
  return (
    <Hero113
      label="Northwind Studio"
      heading="Stories that <strong>hold the room.</strong>"
      subheading="Cinematic brand films and launch reels for teams that want the work to carry the pitch."
      primaryButton={{ label: "Book a call", href: "https://beste.co" }}
      playLabel="Watch the reel"
      media={{
        src: "https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=1920&h=820&fit=crop",
        alt: "Film crew setting up a studio shot",
        videoUrl: "https://www.youtube.com/embed/dQw4w9WgXcQ",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered through Badge6
headingstringHeadline HTML; wrap a phrase in <strong> to render it muted
subheadingstringSupporting paragraph under the headline, capped at max-w-2xl
primaryButtonActionLinkPrimary CTA rendered through Button1
playLabelstringLabel for both "watch" triggers; also gates whether they render at all
mediaMediaItemBanner image plus the video to open in the lightbox
classNamestringExtra classes for the outer <section>
ts
type ActionLink = {
  label: string;
  href: string;
};

type MediaItem = {
  src: string;
  alt: string;
  videoUrl: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero116

Studio Reel Hero

Editorial hero with twin vertical image marquees scrolling in opposite directions beside the headline.

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

hero80

Cinematic Hero with Overlapping Media

Centered hero with inset background media and overlapping product image

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

hero115

Cinematic Image Hero

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

PRO

hero141

Capability Marquee Hero

Full-bleed monochrome hero with a giant display heading, short description, and a continuous bottom marquee of capability chips that pauses on hover.