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

Hero84: Split Hero with Edge-to-Edge Media

50/50 split hero: content column on the left over the plain page background, and an edge-to-edge image or video filling the entire right column with no inset margin or dark overlay, plus a small checklist row under the buttons.

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

Base UI flavor

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

This installs the block to components/beste/block/hero84.tsx along with the badge and button shadcn/ui primitives it depends on.

Quick start

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

tsx
import { Hero84, hero84Demo } from "@/components/beste/block/hero84";

export default function Page() {
  return <Hero84 {...hero84Demo} />;
}

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

tsx
import { ArrowRight } from "lucide-react";
import { Hero84 } from "@/components/beste/block/hero84";

export default function Page() {
  return (
    <Hero84
      badge={{ label: "New Platform", variant: "secondary" }}
      heading="Where ideas become exceptional digital products"
      description="An end-to-end platform combining design, prototyping, and development."
      buttons={[
        { label: "Get Started Free", href: "/signup", icon: ArrowRight },
        { label: "Book a Demo", href: "/demo", variant: "outline" },
      ]}
      backgroundMedia={{ type: "image", src: "https://images.unsplash.com/photo-1531297484001-80022131f5a1?w=1200&h=1200&fit=crop" }}
      checkItems={[
        { title: "No credit card required" },
        { title: "14-day free trial" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttonsButtonItem[][]CTA buttons; each can carry its own trailing icon
backgroundMedia{ type: "image" | "video"; src: string; alt?: string }Image or video filling the right column edge-to-edge
checkItemsCheckItem[][]Small checkmark + text trust row under the buttons
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href: string;
  variant?: "default" | "outline";
  icon?: LucideIcon;
};

type CheckItem = {
  title: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero91

Split Hero with Feature List Panel

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

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

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

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.