Split Hero with Video Player

Two-column hero with playable video (or image), play button overlay, and key stats row. Perfect for product demos and feature announcements.

PRO

Hero35: Split Hero with Video Player

Two-column hero with a playable video (or static image) on one side: the video is muted and loops by default, with a centered play button overlay that toggles playback and disappears once the clip is playing, plus a three-column key-stats row under the CTA buttons.

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

Base UI flavor

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

This installs the block to components/beste/block/hero35.tsx and the Badge and Button shadcn/ui primitives it uses.

Quick start

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

tsx
import { Hero35, hero35Demo } from "@/components/beste/block/hero35";

export default function Page() {
  return <Hero35 {...hero35Demo} />;
}

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

tsx
import { Hero35 } from "@/components/beste/block/hero35";

export default function Page() {
  return (
    <Hero35
      heading="Build faster with modern tools"
      description="Ship products faster and scale without limits."
      buttons={[{ label: "Get Started", href: "/signup" }]}
      media={{
        type: "video",
        src: "/videos/product-demo.mp4",
        poster: "https://images.unsplash.com/photo-1767805504153-73e4a6e4ccc1?w=900&auto=format&fit=crop",
      }}
      stats={[
        { value: "10K+", label: "Active Users" },
        { value: "99.9%", label: "Uptime" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional pill badge above the heading
headingstringMain headline
descriptionstringSupporting paragraph
buttonsButtonItem[][]CTA buttons under the description
media{ type: "video" | "image"; src: string; poster?: string; alt?: string }Video or image filling the media panel
stats{ value: string; label: string }[][]Three-column stat row under the CTAs
displayPosition"left" | "right""left"Which side the text column renders on
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost";
};

Behavior notes

More Hero blocks

View all Hero
FREE

hero65

Split Hero with YouTube Video

Two-column hero with embedded YouTube video player in responsive aspect ratio container. Perfect for product demos and explainer video landing pages.

PRO

hero92

Split Hero with Bento Feature Grid

50/50 split hero with content left and bento feature grid overlay on video right

PRO

hero84

Split Hero with Edge-to-Edge Media

50/50 split hero with content left and edge-to-edge video/image right with checklist items

PRO

hero90

Stacked Hero with Media Top

Vertical split hero with video/image on top and content section below

PRO

hero94

Reverse Split Hero with Pill Grid

Reverse split hero with compact 3x2 pill grid over video left, content right

PRO

hero102

Split Hero with Timeline Steps

50/50 split hero with content left and vertical numbered timeline overlay on video right