Enterprise Hero with Trust Badges

Centered hero with security and compliance trust indicators (SOC 2, Uptime, CDN, Encryption) displayed as icon badges. Perfect for enterprise B2B products.

PRO

Hero59: Enterprise Hero with Trust Badges

Centered enterprise/B2B hero that closes with a row of compliance and reliability signals (SOC 2, uptime, CDN, encryption), each rendered as an icon-plus-label pair rather than a generic logo strip.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero59, hero59Demo } from "@/components/beste/block/hero59";

export default function Page() {
  return <Hero59 {...hero59Demo} />;
}

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

tsx
import { Hero59 } from "@/components/beste/block/hero59";

export default function Page() {
  return (
    <Hero59
      badge={{ label: "Enterprise Ready", variant: "outline" }}
      heading="Secure infrastructure for modern teams"
      description="Deploy with confidence using our battle-tested platform."
      buttons={[
        { label: "Get Started", href: "https://beste.co" },
        { label: "Contact Sales", href: "https://beste.co", variant: "outline" },
      ]}
      features={[
        { icon: "shield", label: "SOC 2 Compliant" },
        { icon: "zap", label: "99.99% Uptime" },
      ]}
    />
  );
}

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
featuresFeatureItem[][]Trust-signal row rendered below the buttons
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost";
};

type FeatureItem = {
  icon: "shield" | "zap" | "globe" | "lock";
  label: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero123

Trust Hero with Logos

Trust hero with a heading, description and CTA beside a tall portrait image, over a grayscale logo marquee.

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.

PRO

hero138

Editorial Trust Hero

Static full-bleed editorial hero with an eyebrow badge, a giant display heading, a supporting paragraph, dual seal CTAs, and an overlapping avatar trust row.

FREE

hero68

Centered Hero with Feature Icons

Centered hero with three feature highlights displayed as icon cards with descriptions below the CTA. Perfect for platform and infrastructure 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

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.