A creative studio crafting cinematic brand stories, launch reels, and campaigns that move people from the first frame.
Centered big-type studio hero with start and watch-the-film actions over a cinematic banner.
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.
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
npx shadcn add "https://ui.beste.co/r/hero113?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow text rendered through Badge6 |
heading | string | – | Headline HTML; wrap a phrase in <strong> to render it muted |
subheading | string | – | Supporting paragraph under the headline, capped at max-w-2xl |
primaryButton | ActionLink | – | Primary CTA rendered through Button1 |
playLabel | string | – | Label for both "watch" triggers; also gates whether they render at all |
media | MediaItem | – | Banner image plus the video to open in the lightbox |
className | string | – | Extra classes for the outer <section> |
type ActionLink = {
label: string;
href: string;
};
type MediaItem = {
src: string;
alt: string;
videoUrl: string;
};setOpen(true); either requires playLabel and media to both be set.{open && media && ...}), not SSR-mounted-and-hidden, so it is absent from the initial HTML until a user opens it.stopPropagation) so they do not close it. There is no Escape-key handler.<iframe> pointed at ${media.videoUrl}?autoplay=1, so videoUrl must already be an embeddable URL (for example a YouTube /embed/ link), not a watch-page link.group/hero113 hover-scale transition (scale-105 over 700ms) that fires on hovering the whole banner, independent of the modal state.hero165
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.
hero131
Full-bleed hero whose background crossfades between frames, with a clickable filmstrip of thumbnails pinned along the bottom and an auto-advancing active tile.
hero116
Editorial hero with twin vertical image marquees scrolling in opposite directions beside the headline.
hero115
Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.