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

Hero45: Centered Hero with Ratings Social Proof

Centered hero built around a review moment: an overlapping avatar stack next to a fractional star rating and review count, sitting between the CTA buttons and a full-width product screenshot below.

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

Base UI flavor

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

This installs the block to components/beste/block/hero45.tsx and its shadcn/ui dependencies: Badge, Button.

Quick start

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

tsx
import { Hero45, hero45Demo } from "@/components/beste/block/hero45";

export default function Page() {
  return <Hero45 {...hero45Demo} />;
}

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

tsx
import { Hero45 } from "@/components/beste/block/hero45";

export default function Page() {
  return (
    <Hero45
      badge={{ label: "5-Star Rated", variant: "secondary" }}
      heading="Join thousands of happy customers"
      description="Trusted by teams worldwide to streamline their workflows."
      buttons={[
        { label: "Start Free Trial", href: "https://beste.co" },
        { label: "See Reviews", href: "https://beste.co", variant: "outline" },
      ]}
      socialProof={{
        avatars: [
          { src: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=100&h=100&fit=crop", alt: "User 1" },
          { src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "User 2" },
        ],
        rating: 4.7,
        reviewCount: "2,847",
        label: "from verified reviews",
      }}
      image={{ src: "https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1200&h=800&fit=crop", alt: "Product screenshot" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Pill above the heading
headingstringMain heading
descriptionstringSupporting paragraph
buttonsButtonItem[][]CTA buttons; the first one gets a trailing arrow icon
socialProofSocialProofAvatar stack plus star rating row
image{ src: string; alt: string }Full-width screenshot rendered below the CTAs
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 }[];
  rating: number;
  reviewCount: string;
  label: 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

hero79

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

hero72

Browser Screenshot Hero with Notifications

Centered hero with perspective browser mockup, floating notification cards at corners, and star rating badge. Perfect for SaaS products and web apps.

FREE

hero7

Centered Hero with Media

Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.

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.