50/50 split hero with content left and vertical numbered timeline overlay on video right
True 50/50 split hero, not an inset-panel layout: a solid content pane on the left (heading, description, CTAs) and a full-bleed background video on the right with a connected vertical timeline of icon steps overlaid on top of it.
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/hero102?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero102?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero102.tsx and its dependencies: the badge and button shadcn/ui primitives.
The installed file exports hero102Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero102, hero102Demo } from "@/components/beste/block/hero102";
export default function Page() {
return <Hero102 {...hero102Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Code, GitBranch, Rocket, TestTube } from "lucide-react";
import { Hero102 } from "@/components/beste/block/hero102";
export default function Page() {
return (
<Hero102
badge={{ label: "How It Works", variant: "secondary" }}
heading="From idea to production in four steps"
description="A streamlined pipeline from commit to global deployment."
buttons={[{ label: "Start Building", href: "/signup", variant: "default" }]}
backgroundMedia={{ type: "video", src: "/videos/hero.mp4" }}
timelineSteps={[
{ icon: Code, title: "Write Code", description: "Push to any Git branch" },
{ icon: TestTube, title: "Auto Test", description: "CI runs in parallel" },
{ icon: GitBranch, title: "Preview", description: "Instant preview URLs" },
{ icon: Rocket, title: "Deploy", description: "Ship to global edge" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Pill shown above the heading |
heading | string | – | Main headline |
description | string | – | Supporting copy under the heading |
buttons | ButtonItem[] | [] | CTA buttons under the description |
backgroundMedia | BackgroundMedia | – | Video or image filling the right-hand pane |
timelineSteps | TimelineStep[] | [] | Vertical icon steps overlaid on the video pane, in order |
invertColor | boolean | true | Left pane switches between bg-black/90 with white text and bg-background with foreground text; also affects the video overlay and timeline colors |
className | string | – | Extra classes for the outer <section> |
type Badge = { label: string; variant?: "default" | "secondary" | "outline" };
type ButtonItem = { label: string; href: string; variant?: "default" | "outline" };
type BackgroundMedia = { type: "image" | "video"; src: string; alt?: string };
type TimelineStep = { icon: LucideIcon; title: string; description: string };lg:flex with two equal flex-1 panes; below lg the panes stack vertically (content pane on top, video+timeline pane below with a min-h-[50vh] floor).w-px vertical divider line, and the last step's connector is omitted (isLast check).bg-black/90 or bg-background) rather than transparent over the video, so it reads as two visually distinct halves rather than one continuous background.absolute inset-0) with a flat color overlay (bg-black/50 or bg-background/60) behind the timeline, unlike the rounded inset-panel treatment used in most other heroes in this set.backgroundMedia.type also accepts "image".hero84
50/50 split hero with content left and edge-to-edge video/image right with checklist items
hero91
50/50 split hero with muted content panel and feature list left, video/image right
hero89
50/50 split hero with video/image left and content with testimonial quote right
hero92
50/50 split hero with content left and bento feature grid overlay on video right
hero93
40/60 asymmetric split hero with narrow content panel and vertical quick links over video
hero90
Vertical split hero with video/image on top and content section below