50/50 split hero with content left and edge-to-edge video/image right with checklist items
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.
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/hero84?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Small label above the heading |
heading | string | – | Main headline |
description | string | – | Supporting paragraph under the heading |
buttons | ButtonItem[] | [] | 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 |
checkItems | CheckItem[] | [] | Small checkmark + text trust row under the buttons |
className | string | – | Extra classes for the outer <section> |
type ButtonItem = {
label: string;
href: string;
variant?: "default" | "outline";
icon?: LucideIcon;
};
type CheckItem = {
title: string;
};flex min-h-screen flex-col lg:flex-row): the right media column fills its half with absolute inset-0 size-full object-cover and has no rounded corners, margin, or dark overlay, unlike the inset glass-panel treatment every other hero in this set uses for its background media.invertColor prop on this component: heading and description always use the standard text-foreground/text-muted-foreground tokens because the text sits in a plain content column next to the media, not layered on top of it.lg, the two columns stack vertically (content first, then a min-h-[400px] media block) since the flex container defaults to flex-col.checkItems render as an inline flex-wrap row of Check icon plus label pairs, not a bulleted list or grid, and each item gets text-primary on its check icon.{button.label}{Icon}), matching hero79/hero87's ordering rather than hero83's icon-first pattern.hero91
50/50 split hero with muted content panel and feature list left, video/image right
hero92
50/50 split hero with content left and bento feature grid overlay on video right
hero102
50/50 split hero with content left and vertical numbered timeline overlay on video right
hero90
Vertical split hero with video/image on top and content section below
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.