Split Hero with Feature List Panel

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

PRO

Hero91: Split Hero with Feature List Panel

Fullscreen 50/50 hero with a muted content panel on the left, a badge, heading, description, buttons, and a short icon-led feature list below them, and a video or image panel on the right. The feature rows sit under a top border, echoing the testimonial layout used elsewhere in this hero set but swapped for a feature summary.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero91, hero91Demo } from "@/components/beste/block/hero91";

export default function Page() {
  return <Hero91 {...hero91Demo} />;
}

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

tsx
import { Shield, Zap } from "lucide-react";
import { Hero91 } from "@/components/beste/block/hero91";

export default function Page() {
  return (
    <Hero91
      badge={{ label: "All-in-One", variant: "secondary" }}
      heading="Everything you need to scale your product"
      description="Stop juggling between tools. One platform for design, development, and deployment."
      buttons={[{ label: "Start Building", href: "/signup", variant: "default" }]}
      backgroundMedia={{ type: "image", src: "/hero/product.jpg", alt: "Product screen" }}
      features={[
        { icon: Zap, title: "Lightning Fast", description: "Sub-second builds with edge deployment" },
        { icon: Shield, title: "Enterprise Security", description: "SOC 2 compliant end-to-end" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeSmall pill above the heading
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttonsButton[][]CTA buttons, rendered in order
backgroundMediaBackgroundMediaMedia filling the right panel
featuresFeatureItem[][]Icon-led rows listed under the buttons
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 FeatureItem = { icon: LucideIcon; title: string; description: string };

Behavior notes

More Hero blocks

View all Hero
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

hero92

Split Hero with Bento Feature Grid

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

PRO

hero102

Split Hero with Timeline Steps

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

PRO

hero93

Asymmetric Split Hero with Quick Links

40/60 asymmetric split hero with narrow content panel and vertical quick links over video

PRO

hero90

Stacked Hero with Media Top

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

PRO

hero89

Reverse Split Hero with Testimonial

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