Centered hero with avatar stack and founder count text between buttons and featured image. Perfect for startup products and B2B SaaS.
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.
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/hero78?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Badge above the heading |
heading | string | – | Main headline |
description | string | – | Supporting paragraph |
buttons | ButtonItem[] | [] | 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 |
className | string | – | Extra classes for the outer <section> |
type ButtonItem = {
label: string;
href?: string;
variant?: "default" | "secondary" | "outline" | "ghost";
};socialProof.avatars renders as an overlapping stack (-space-x-2, each avatar in its own bordered circle) with no cap on count; a long array overflows visually rather than truncating with a "+N" indicator.<img> carrying fixed width={1200} height={800} attributes for aspect-ratio reservation, but it scales with w-full, so its rendered size follows the container, not those attributes.socialProof and image render independently of each other and of buttons; each block can be omitted on its own, for example shipping the hero with only a headline and CTA buttons.hero45
Centered hero with avatar stack, partial star ratings display, and review count above the featured image. Perfect for products with strong user reviews.
hero79
Two-column hero with avatar stack social proof positioned above action buttons alongside featured image. Perfect for startup and team-focused products.
hero36
Centered hero with gradient-highlighted heading text and trusted-by logo cloud below CTA buttons. Perfect for B2B SaaS and enterprise products.
hero7
Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.
hero98
Cinematic hero with announcement pill, avatar social proof, and overlapping dashboard media
hero72
Centered hero with perspective browser mockup, floating notification cards at corners, and star rating badge. Perfect for SaaS products and web apps.