50/50 split hero with muted content panel and feature list left, video/image right
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.
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/hero91?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Small pill above the heading |
heading | string | – | Main headline |
description | string | – | Supporting paragraph under the heading |
buttons | Button[] | [] | CTA buttons, rendered in order |
backgroundMedia | BackgroundMedia | – | Media filling the right panel |
features | FeatureItem[] | [] | Icon-led rows listed under the buttons |
className | string | – | Extra classes for the outer <section> |
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 };bg-muted/50, distinguishing it from the plain-background content panels used by the other split heroes in this set (hero89, hero92, hero94, hero96).backgroundMedia.type: "video" renders autoPlay loop muted playsInline with no poster fallback; "image" renders a plain <img>. Neither uses next/image.size-10 circle tinted bg-primary/10 with a text-primary icon, distinct from the neutral icon treatment used in this set's overlay-card heroes (hero92, hero94).features is non-empty, and sits below a border-t divider directly under the buttons.flex-col on mobile and lg:flex-row at the lg breakpoint; the section carries min-h-screen.hero84
50/50 split hero with content left and edge-to-edge video/image right with checklist items
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
hero93
40/60 asymmetric split hero with narrow content panel and vertical quick links over video
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