Pricing Preview Hero

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

PRO

Hero71: Pricing Preview Hero

Centered pricing-style hero: headline and copy lead into a large price figure with an optional billing period and note, followed by a horizontal checklist of plan features and a 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/hero71?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/hero71.tsx and the shadcn/ui badge and button components it depends on.

Quick start

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

tsx
import { Hero71, hero71Demo } from "@/components/beste/block/hero71";

export default function Page() {
  return <Hero71 {...hero71Demo} />;
}

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

tsx
import { Hero71 } from "@/components/beste/block/hero71";

export default function Page() {
  return (
    <Hero71
      badge={{ label: "Launch Pricing", variant: "default" }}
      heading="One plan, everything included"
      description="No tiers to compare, no add-ons to hunt for."
      price={{ amount: "$29", period: "/month", note: "Billed annually" }}
      features={[
        { text: "Unlimited team members" },
        { text: "50GB storage" },
        { text: "Priority support" },
      ]}
      buttons={[{ label: "Start Free Trial", href: "/signup" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Badge above the heading
headingstringMain headline
descriptionstringSupporting paragraph
price{ amount: string; period?: string; note?: string }Price block: large amount, an optional period suffix next to it, and an optional note line underneath
features{ text: string }[][]Horizontal checklist of plan features below the price
buttonsButtonItem[][]CTA buttons at the bottom
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost";
};

Behavior notes

More Hero blocks

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

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

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

hero120

Editorial Image Hero

Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.

PRO

hero80

Cinematic Hero with Overlapping Media

Centered hero with inset background media and overlapping product image

PRO

hero50

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.