Reverse split hero with compact 3x2 pill grid over video left, content right
Fullscreen 50/50 hero with the media panel on the left and content on the right, the mirror image of hero89/hero91/hero92/hero96. A video or image fills the left panel with a compact 3-column grid of small pill cards (icon plus label only, no description) floating on top.
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/hero94?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero94?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero94.tsx and the shadcn/ui primitives it depends on: Badge and Button.
The installed file exports hero94Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero94, hero94Demo } from "@/components/beste/block/hero94";
export default function Page() {
return <Hero94 {...hero94Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cloud, Code, Monitor } from "lucide-react";
import { Hero94 } from "@/components/beste/block/hero94";
export default function Page() {
return (
<Hero94
badge={{ label: "Developer Tools", variant: "secondary" }}
heading="Your entire workflow, unified"
description="From code editor to production, a single platform covers every step."
buttons={[{ label: "Try It Free", href: "/signup", variant: "default" }]}
backgroundMedia={{ type: "image", src: "/hero/editor.jpg", alt: "Code editor" }}
bentoCards={[
{ icon: Code, title: "Code Editor" },
{ icon: Monitor, title: "Live Preview" },
{ icon: Cloud, title: "Cloud Deploy" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Small pill above the heading |
heading | string | – | Main headline |
description | string | – | Supporting paragraph under the heading |
buttons | Button[] | [] | CTA buttons, rendered in order |
backgroundMedia | BackgroundMedia | – | Media behind the pill grid on the left panel |
bentoCards | BentoCard[] | [] | Small icon-plus-label pills floating over the media |
className | string | – | Extra classes for the outer <section> |
type Badge = { label: string; variant?: "default" | "secondary" | "outline" };
type Button = { label: string; href: string; variant?: "default" | "outline" };
type BackgroundMedia = { type: "image" | "video"; src: string; alt?: string };
type BentoCard = { icon: LucideIcon; title: string };flex-col-reverse lg:flex-row: in the JSX the media panel is written first and the content panel second, but flex-col-reverse flips the visual stacking on mobile so content appears above media, while lg:flex-row restores document order (media left, content right) at the lg breakpoint.backgroundMedia.type: "video" renders autoPlay loop muted playsInline with no poster fallback; "image" renders a plain <img>. A bg-black/40 scrim sits over the media so the pill grid stays legible.grid-cols-3 layout (no span option, unlike hero92's bento grid), capped at max-w-sm; each pill is icon-over-label rather than icon-beside-label.white/70 by default and brighten to full white together on hover (group/hero94), a single shared hover state rather than independent icon/text treatments.min-h-[400px] floor before the lg split; the section carries min-h-screen.hero92
50/50 split hero with content left and bento feature grid overlay on video right
hero89
50/50 split hero with video/image left and content with testimonial quote right
hero35
Two-column hero with playable video (or image), play button overlay, and key stats row. Perfect for product demos and feature announcements.
hero84
50/50 split hero with content left and edge-to-edge video/image right with checklist items
hero102
50/50 split hero with content left and vertical numbered timeline overlay on video right
hero91
50/50 split hero with muted content panel and feature list left, video/image right