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

Hero78: Centered Hero with Founder Social Proof

Centered hero with a headline, CTA buttons, an overlapping avatar stack with a proof line, and a full-width product image beneath everything, each element rendering independently of the others.

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

Base UI flavor

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

This installs the block to components/beste/block/hero78.tsx and the shadcn/ui badge and button components it depends on.

Quick start

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

tsx
import { Hero78, hero78Demo } from "@/components/beste/block/hero78";

export default function Page() {
  return <Hero78 {...hero78Demo} />;
}

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

tsx
import { Hero78 } from "@/components/beste/block/hero78";

export default function Page() {
  return (
    <Hero78
      badge={{ label: "Now in Beta", variant: "secondary" }}
      heading="Ship products faster with AI-powered workflows"
      description="Automate the busywork and keep your team focused on what matters."
      buttons={[
        { label: "Get Started Free", href: "/signup" },
        { label: "Book a Demo", href: "/demo", variant: "outline" },
      ]}
      socialProof={{
        avatars: [
          { src: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=100&h=100&fit=crop", alt: "User" },
          { src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "User" },
        ],
        text: "Loved by 500+ founders",
      }}
      image={{ src: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1200&h=800&fit=crop", alt: "Product screenshot" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Badge above the heading
headingstringMain headline
descriptionstringSupporting paragraph
buttonsButtonItem[][]CTA buttons below the description
socialProof{ avatars: { src: string; alt: string }[]; text: string }Overlapping avatar stack plus one line of proof text, rendered between the buttons and the image
image{ src: string; alt: string }Full-width image below social proof
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost";
};

Behavior notes

More Hero blocks

View all Hero
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

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.

FREE

hero36

Centered Hero with Logo Cloud

Centered hero with gradient-highlighted heading text and trusted-by logo cloud below CTA buttons. Perfect for B2B SaaS and enterprise products.

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

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.