Filmstrip HeroPRO

A centered hero closing on an edge-to-edge filmstrip of five frames divided by hairlines, one of which floats a live view switcher instead of a photograph.

Hero165: Filmstrip Hero

A centered hero closing on an edge-to-edge filmstrip of five frames divided by hairlines, one of which floats a live view switcher instead of a photograph.

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

Base UI flavor

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

This installs the block to components/beste/block/hero165.tsx, the toolbar21 view-switcher piece it floats on one frame (installed to components/beste/piece/toolbar21.tsx), and the badge23 and button21 components it uses for the eyebrow and the actions.

Quick start

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

tsx
import { Hero165, hero165Demo } from "@/components/beste/block/hero165";

export default function Page() {
  return <Hero165 {...hero165Demo} />;
}

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

tsx
import { CalendarDays, List, Rows3 } from "lucide-react";
import { Hero165 } from "@/components/beste/block/hero165";
import { Toolbar21 } from "@/components/beste/piece/toolbar21";

export default function Page() {
  return (
    <Hero165
      badge={{ label: "Four sites, one week" }}
      heading="Run every clinic from the same screen"
      description="Four practices, thirteen rooms, and one waiting list in a single view that anyone on the rota can read."
      buttons={[
        { label: "Book a demo", href: "/demo" },
        { label: "See pricing", href: "/pricing", tone: "outline" },
      ]}
      frames={[
        { src: "/clinic/reception.jpg", alt: "A clinician in a bright clinic" },
        { src: "/clinic/team.jpg", alt: "A small team around a laptop" },
        { src: "/clinic/desk.jpg", alt: "A tidy reception desk" },
      ]}
      mediaIndex={1}
      media={
        <Toolbar21
          segments={[
            { icon: List, label: "List" },
            { icon: CalendarDays, label: "Week" },
            { icon: Rows3, label: "Rooms" },
          ]}
          activeIndex={1}
          count="142 appointments"
          filterLabel="All sites"
        />
      }
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Centered eyebrow above the heading, rendered through Badge23
headingstringDisplay heading, rendered as the page h1
descriptionstringCentered supporting paragraph, capped at max-w-xl
buttonsActionLink[][]Centered actions in source order
framesFrame[][]Filmstrip photographs, laid out two-up then five-up
mediaIndexnumber0Which frame carries the live asset instead of showing bare
mediaReactNodeLive asset layered on the chosen frame
classNamestringExtra classes for the outer section
ts
type ButtonTone = "primary" | "neutral" | "outline";

type ActionLink = {
  label: string;
  href: string;
  tone?: ButtonTone;
};

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

Behavior notes

More Hero blocks

View all Hero
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

hero113

Statement Reel Hero

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

PRO

hero159

Photo Collage Hero

A centered hero with an eyebrow, light display heading, and two actions above a staggered three-photo collage whose raised middle tile floats a live booking confirmation.

PRO

hero80

Cinematic Hero with Overlapping Media

Centered hero with inset background media and overlapping product image

PRO

hero166

Split Headline Hero

An editorial hero that breaks its display heading across two lines and slots a square image tile floating a live payment card into the gap, with the paragraph and action landing under a hairline.

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.