Split Hero with Bento Feature Grid

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

PRO

Hero92: Split Hero with Bento Feature Grid

Fullscreen 50/50 hero with a plain content panel on the left (badge, heading, description, buttons) and a video or image panel on the right, overlaid with a floating two-column bento grid of glass-morphism feature cards. Individual cards can span both columns to break up the grid rhythm.

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

Base UI flavor

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

This installs the block to components/beste/block/hero92.tsx and the shadcn/ui primitives it depends on: Badge and Button.

Quick start

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

tsx
import { Hero92, hero92Demo } from "@/components/beste/block/hero92";

export default function Page() {
  return <Hero92 {...hero92Demo} />;
}

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

tsx
import { ArrowRight, Shield, Zap } from "lucide-react";
import { Hero92 } from "@/components/beste/block/hero92";

export default function Page() {
  return (
    <Hero92
      badge={{ label: "Platform", variant: "secondary" }}
      heading="Built for teams that move fast and ship often"
      description="From idea to production in record time."
      buttons={[{ label: "Start Free", href: "/signup", variant: "default", icon: ArrowRight }]}
      backgroundMedia={{ type: "image", src: "/hero/team.jpg", alt: "Team working" }}
      bentoCards={[
        { icon: Zap, title: "Edge Functions", description: "Deploy serverless functions globally", span: "wide" },
        { icon: Shield, title: "Security", description: "SOC 2 & GDPR compliant" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeSmall pill above the heading
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttonsButton[][]CTA buttons, rendered in order
backgroundMediaBackgroundMediaMedia behind the bento grid on the right panel
bentoCardsBentoCard[][]Feature cards 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"; icon?: LucideIcon };
type BackgroundMedia = { type: "image" | "video"; src: string; alt?: string };
type BentoCard = { icon: LucideIcon; title: string; description?: string; span?: "normal" | "wide" };

Behavior notes

More Hero blocks

View all Hero
PRO

hero94

Reverse Split Hero with Pill Grid

Reverse split hero with compact 3x2 pill grid over video left, content 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

hero91

Split Hero with Feature List Panel

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

PRO

hero95

Fullscreen Hero with Bento Grid

Fullscreen hero with centered heading and 4-column bento feature grid over inset background video

PRO

hero102

Split Hero with Timeline Steps

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

PRO

hero90

Stacked Hero with Media Top

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