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

Hero131: Filmstrip Hero

Full-bleed hero whose background crossfades between photos, with a giant heading and the active frame's title pinned bottom-left, and a row of equal-width filmstrip thumbnails running along the bottom edge.

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

Base UI flavor

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

This installs the block to components/beste/block/hero131.tsx and its dependencies.

Quick start

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

tsx
import { Hero131, hero131Demo } from "@/components/beste/block/hero131";

export default function Page() {
  return <Hero131 {...hero131Demo} />;
}

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

tsx
import { Hero131 } from "@/components/beste/block/hero131";

export default function Page() {
  return (
    <Hero131
      heading="Light, held still."
      items={[
        {
          image: {
            src: "https://images.unsplash.com/photo-1601326167532-d457cd8186cc?w=1920&h=1200&fit=crop",
            alt: "Long exposure of a misted ridge at dawn",
          },
          name: "Ridgeline at first light",
          href: "/work/ridgeline",
        },
        {
          image: {
            src: "https://images.unsplash.com/photo-1559255244-34f2765f07c4?w=1920&h=1200&fit=crop",
            alt: "Fog rolling over a quiet pine valley",
          },
          name: "Valley, holding its breath",
          href: "/work/valley",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringGiant display heading above the active frame's title
itemsFilmFrame[][]Frames rendered as background slides and filmstrip thumbnails
classNamestringExtra classes for the outer <section>
ts
type FilmFrame = {
  image: HeroImage;
  name: string;
  href: string;
};

type HeroImage = { src: string; alt: string };

Behavior notes

More Hero blocks

View all Hero
PRO

hero115

Cinematic Image Hero

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

PRO

hero136

Thumbnail Marquee Hero

Full-bleed hero whose background crossfades to the active item, with an auto-scrolling marquee of clickable thumbnails along the bottom and a giant heading above the strip.

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

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

hero80

Cinematic Hero with Overlapping Media

Centered hero with inset background media and overlapping product image

PRO

hero127

Slideshow Hero with Background Crossfade

Full-bleed background-driven slideshow hero. The active item's image fills the section and crossfades on selection, with a giant fixed heading and a floating card whose thumbnail, category, numbered pagination, name, and location swap to match the active slide. Auto-loops.