Reverse Split Hero with Testimonial

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

PRO

Hero89: Reverse Split Hero with Testimonial

Fullscreen hero split 50/50: a video or image panel fills the left half, and the right half stacks a badge, heading, description, and buttons, closing with a bordered testimonial quote and avatar underneath. The layout stacks to a single column below lg, with the media panel on top.

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

Base UI flavor

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

This installs the block to components/beste/block/hero89.tsx and the shadcn/ui primitives it depends on: Badge, Button, and Avatar (for the testimonial's headshot with an initials fallback).

Quick start

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

tsx
import { Hero89, hero89Demo } from "@/components/beste/block/hero89";

export default function Page() {
  return <Hero89 {...hero89Demo} />;
}

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

tsx
import { Hero89 } from "@/components/beste/block/hero89";

export default function Page() {
  return (
    <Hero89
      badge={{ label: "New in V3", variant: "secondary" }}
      heading="Design, build, and launch in one place"
      description="A unified workspace that brings your entire product workflow together."
      buttons={[
        { label: "Get Started", href: "/signup", variant: "default" },
        { label: "View Pricing", href: "/pricing", variant: "outline" },
      ]}
      backgroundMedia={{ type: "image", src: "/hero/workspace.jpg", alt: "Workspace preview" }}
      testimonial={{
        quote: "This platform completely transformed how our team ships products.",
        name: "Sarah Chen",
        title: "VP of Engineering at Acme",
        avatar: { src: "/avatars/sarah.jpg", alt: "Sarah Chen" },
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeSmall pill above the heading
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttonsButton[][]CTA buttons, rendered in order
backgroundMediaBackgroundMediaMedia filling the left panel
testimonialTestimonialQuote block 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 Testimonial = {
  quote: string;
  name: string;
  title: string;
  avatar?: { src: string; alt: string };
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero38

Split Hero with Testimonial Card

Two-column hero with prominent testimonial quote card featuring author avatar and company info. Perfect for building trust and social proof.

PRO

hero94

Reverse Split Hero with Pill Grid

Reverse split hero with compact 3x2 pill grid over video left, content right

PRO

hero102

Split Hero with Timeline Steps

50/50 split hero with content left and vertical numbered timeline overlay on video 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

hero93

Asymmetric Split Hero with Quick Links

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

PRO

hero91

Split Hero with Feature List Panel

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