Centered hero with security and compliance trust indicators (SOC 2, Uptime, CDN, Encryption) displayed as icon badges. Perfect for enterprise B2B products.
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.
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/hero59?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Pill above the heading |
heading | string | – | Main heading |
description | string | – | Supporting paragraph |
buttons | ButtonItem[] | [] | CTA buttons; the first one gets a trailing arrow icon |
features | FeatureItem[] | [] | Trust-signal row rendered below the buttons |
className | string | – | Extra classes for the outer <section> |
type ButtonItem = {
label: string;
href?: string;
variant?: "default" | "secondary" | "outline" | "ghost";
};
type FeatureItem = {
icon: "shield" | "zap" | "globe" | "lock";
label: string;
};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.flex flex-wrap justify-center list, so items reflow onto additional lines on narrow viewports instead of scrolling or collapsing into a menu.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.features is entirely optional and the hero degrades to heading, description, and buttons without it.hero123
Trust hero with a heading, description and CTA beside a tall portrait image, over a grayscale logo marquee.
hero36
Centered hero with gradient-highlighted heading text and trusted-by logo cloud below CTA buttons. Perfect for B2B SaaS and enterprise products.
hero138
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.
hero68
Centered hero with three feature highlights displayed as icon cards with descriptions below the CTA. Perfect for platform and infrastructure products.
hero7
Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.
hero78
Centered hero with avatar stack and founder count text between buttons and featured image. Perfect for startup products and B2B SaaS.