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.

PRO

Hero144: Centered Product Hero

Centered hero with a bordered eyebrow pill, a large light heading, a supporting paragraph, two accent buttons, and a wide rounded image tile below that floats a live product micro-asset (a file-drawer style card list in the demo) over a soft photo backdrop.

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

Base UI flavor

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

This installs the block to components/beste/block/hero144.tsx, the badge23 and button21 components it uses for the eyebrow pill and CTA buttons, the dashboard31 piece it floats inside the image tile as the demo's live asset, and its dependencies.

Quick start

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

tsx
import { Hero144, hero144Demo } from "@/components/beste/block/hero144";

export default function Page() {
  return <Hero144 {...hero144Demo} />;
}

Then replace the demo with your own props, including your own media node. Written out, a trimmed setup looks like this:

tsx
import { Hero144 } from "@/components/beste/block/hero144";
import { Dashboard31 } from "@/components/beste/piece/dashboard31";

export default function Page() {
  return (
    <Hero144
      badge={{ label: "Care operations, quietly handled" }}
      heading="The workspace that runs the day so your team doesn't have to"
      description="Scheduling, records, and billing in one calm surface."
      buttons={[
        { label: "Book a demo", href: "https://beste.co", tone: "primary" },
        { label: "Take the tour", href: "https://beste.co", tone: "outline" },
      ]}
      media={
        <Dashboard31
          title="Case Files"
          items={[
            { name: "Intake_Questionnaire_v3.docx", tone: "doc" },
            { name: "Session_Notes_April.pdf", tone: "pdf" },
          ]}
        />
      }
      image={{
        src: "https://images.unsplash.com/photo-1701979399033-1f720add6b91?w=2000&fit=crop",
        alt: "Soft blue gradient backdrop",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge23 pill
headingstringLarge light section heading
descriptionstringSupporting paragraph under the heading
buttonsActionLink[][]CTA buttons rendered via Button21
mediaReactNodeLive asset floated in front of the image tile
image{ src: string; alt: string }Backdrop photo filling the tile behind media
classNamestringExtra classes for the outer <section>
ts
type ActionLink = {
  label: string;
  href: string;
  tone?: "primary" | "neutral" | "outline";
};

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

hero145

Editorial Product Hero

An editorial hero with an eyebrow and an oversized full-width light heading, then a lower row pairing a paragraph and two accent buttons with an image tile that floats a live app window frame.

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.

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.

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

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.