Reverse Split Hero with Pill Grid

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

PRO

Hero94: Reverse Split Hero with Pill Grid

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeSmall pill above the heading
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttonsButton[][]CTA buttons, rendered in order
backgroundMediaBackgroundMediaMedia behind the pill grid on the left panel
bentoCardsBentoCard[][]Small icon-plus-label pills floating over the media
classNamestringExtra classes for the outer <section>
ts
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 };

Behavior notes

More Hero blocks

View all Hero
PRO

hero92

Split Hero with Bento Feature Grid

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

PRO

hero89

Reverse Split Hero with Testimonial

50/50 split hero with video/image left and content with testimonial quote right

PRO

hero35

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

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

hero102

Split Hero with Timeline Steps

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

PRO

hero91

Split Hero with Feature List Panel

50/50 split hero with muted content panel and feature list left, video/image right