Split Hero with Avatar Social Proof

Two-column hero with avatar stack social proof positioned above action buttons alongside featured image. Perfect for startup and team-focused products.

PRO

Hero79: Split Hero with Avatar Social Proof

Two-column hero: heading, description, an overlapping avatar stack with a trust line, and CTA buttons sit on one side while a bordered product screenshot fills the other. displayPosition flips which side holds the content versus the image.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero79, hero79Demo } from "@/components/beste/block/hero79";

export default function Page() {
  return <Hero79 {...hero79Demo} />;
}

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

tsx
import { Hero79 } from "@/components/beste/block/hero79";

export default function Page() {
  return (
    <Hero79
      badge={{ label: "New Features", variant: "outline" }}
      heading="The modern platform for ambitious teams"
      description="Everything you need to build, launch, and scale your product."
      buttons={[
        { label: "Start Building", href: "/signup" },
        { label: "View Pricing", href: "/pricing", variant: "ghost" },
      ]}
      socialProof={{
        avatars: [
          { src: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=100&h=100&fit=crop&crop=face", alt: "User 1" },
          { src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop&crop=face", alt: "User 2" },
        ],
        text: "Trusted by 1,000+ startups",
      }}
      image={{ src: "https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1200&h=800&fit=crop", alt: "Product screenshot" }}
      displayPosition="left"
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttonsButtonItem[][]CTA buttons; the first one gets a trailing arrow icon
socialProofSocialProofAvatar stack plus a trust line rendered under the description
image{ src: string; alt: string }Bordered, rounded screenshot shown in the opposite column
displayPosition"left" | "right""left"Which side the content column renders on
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost";
};

type SocialProof = {
  avatars: { src: string; alt: string }[];
  text: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero78

Centered Hero with Founder Social Proof

Centered hero with avatar stack and founder count text between buttons and featured image. Perfect for startup products and B2B SaaS.

PRO

hero45

Centered Hero with Ratings Social Proof

Centered hero with avatar stack, partial star ratings display, and review count above the featured image. Perfect for products with strong user reviews.

PRO

hero98

Cinematic Hero with Social Proof

Cinematic hero with announcement pill, avatar social proof, and overlapping dashboard media

PRO

hero24

Wellness Hero with Stats Cards

Split-layout hero with avatar stack social proof, floating heart rate card, and progress indicator overlay on image. Perfect for health, fitness, and wellness apps.

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

hero61

Split Hero with Floating Feature Cards

Two-column hero with announcement banner, social proof metrics, and three floating feature cards with hover animations. Perfect for SaaS product launches.