Centered Hero with Announcement Pill

Clean centered hero with clickable announcement banner pill above the heading with sparkle icon. Perfect for product launches and feature announcements.

PRO

Hero50: Centered Hero with Announcement Pill

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
announcementAnnouncementClickable pill rendered above the heading
headingstringMain heading
descriptionstringSupporting paragraph
buttonsButtonItem[][]CTA buttons, each with an optional trailing icon
classNamestringExtra classes for the outer <section>
ts
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";
};

Behavior notes

More Hero blocks

View all Hero
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

hero144

Centered Product Hero

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.

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

hero142

Centered Studio Hero

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.

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.

PRO

hero71

Pricing Preview Hero

Centered hero with prominent price display, period label, and horizontal feature checklist. Perfect for freemium products and pricing-focused landing pages.