Filmstrip Hero

Four sites, one week

Run every clinic from the same screen

Sirius keeps four practices, thirteen rooms, and one waiting list in a single view that anyone on the rota can read.

A healthcare professional smiling in a bright clinic
A small team talking around a laptop
ListWeekRooms
142 appointmentsAll sites
Portrait of Elena Rourke
A tidy reception desk in soft light
A calculator and paperwork on a desk
About this block

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

  • The hairlines between frames are the grid gap, not borders: gap-px over bg-border lets the section background show through as one-pixel seams, so the rules stay perfectly even and never double up at the joins.
  • mediaIndex picks the frame that carries the asset and defaults to 0. Pointing it past the end of frames renders the strip with no asset at all rather than erroring.
  • An odd number of frames would leave a hole in the two-column mobile layout, so the last frame spans both columns when frames.length is odd, and drops back to a single column from md.
  • The strip sits outside the max-w-7xl container so it runs edge to edge, which is why the section carries pt-16 only. The strip itself closes the block.
  • Frames are fixed height per breakpoint (h-44, then md:h-60) rather than aspect-ratio driven, so mixed portrait and landscape sources still line up along the strip.
  • Button tones fall back positionally: tone is honored when set, otherwise the first button renders primary and every later one renders outline.

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

hero156

Split Screen Panel Hero

Edge-to-edge split hero: a dark half carries the statement, paragraph, outline pill CTA and a ruled detail row, while the other half is a full-height photograph with a pill caption in its corner.

PRO

hero162

Indexed Rows Hero

A hero that sets a light display heading and one action against a column of numbered hairline rows, then closes on a full-bleed image band with a live approval request pinned into its corner.