Clean centered hero with clickable announcement banner pill above the heading with sparkle icon. Perfect for product launches and feature announcements.
Minimal centered hero led by a clickable announcement pill (a sparkle-badged "New" label plus a short line of text) sitting above the heading, description, and CTA row.
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/hero50?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero50?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero50.tsx and its shadcn/ui dependencies: Badge, Button.
The installed file exports hero50Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero50, hero50Demo } from "@/components/beste/block/hero50";
export default function Page() {
return <Hero50 {...hero50Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero50 } from "@/components/beste/block/hero50";
export default function Page() {
return (
<Hero50
announcement={{ label: "New", text: "Introducing AI-powered workflows", href: "/changelog" }}
heading="Build products your customers will love"
description="The modern platform for creating exceptional digital experiences."
buttons={[
{ label: "Get Started Free", href: "https://beste.co", icon: "arrow-right" },
{ label: "Schedule Demo", href: "https://beste.co", variant: "outline" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
announcement | Announcement | – | Clickable pill rendered above the heading |
heading | string | – | Main heading |
description | string | – | Supporting paragraph |
buttons | ButtonItem[] | [] | CTA buttons, each with an optional trailing icon |
className | string | – | Extra classes for the outer <section> |
type Announcement = { label: string; text: string; href?: string };
type ButtonItem = {
label: string;
href?: string;
variant?: "default" | "secondary" | "outline" | "ghost";
icon?: "arrow-right" | "chevron-right" | "external-link";
};next/link wrapping a small Badge (with a Sparkles icon and announcement.label), the announcement.text, and a trailing arrow; the whole pill is one hit target, and the arrow nudges right on hover via group-hover:translate-x-0.5.icon is a string key ("arrow-right" | "chevron-right" | "external-link"), resolved through a local buttonIconMap to the matching Lucide component; omitting icon renders the button with no trailing glyph regardless of position.max-w-5xl (heading max-w-4xl, description max-w-2xl).announcement is fully optional; without it the hero starts directly at the heading.hero7
Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.
hero144
A centered hero with an eyebrow pill, a large light heading, a supporting paragraph, two accent buttons, and a wide image tile below that floats a live product micro-asset.
hero36
Centered hero with gradient-highlighted heading text and trusted-by logo cloud below CTA buttons. Perfect for B2B SaaS and enterprise products.
hero142
A simple centered hero for the Auralis set: a parenthetical eyebrow badge above a balanced heading, a short description, and a pair of animated seal buttons.
hero68
Centered hero with three feature highlights displayed as icon cards with descriptions below the CTA. Perfect for platform and infrastructure products.
hero71
Centered hero with prominent price display, period label, and horizontal feature checklist. Perfect for freemium products and pricing-focused landing pages.