Enterprise Hero with Trust Badges

Enterprise Ready

Secure infrastructure for modern teams

Deploy with confidence using our battle-tested platform. Built for scale, designed for developers.

SOC 2 Compliant
99.99% Uptime
Global CDN
End-to-End Encryption
About this block

Enterprise Hero with Trust BadgesPRO

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

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.

Upgrade Now

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

  • Each FeatureItem.icon is one of four fixed string keys resolved through a local iconMap (shield, zap, globe, lock) to the matching Lucide icon; there is no way to pass a custom icon component through this prop.
  • The trust row is a flex flex-wrap justify-center list, so items reflow onto additional lines on narrow viewports instead of scrolling or collapsing into a menu.
  • The heading uses text-pretty (avoids a lone short word on the last line) while the description uses text-balance, a deliberate split rather than both using the same wrapping strategy.
  • Layout is a single centered column with no image or split variant; features is entirely optional and the hero degrades to heading, description, and buttons without it.

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.

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

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.

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.