Centered typographic hero on a muted card with an oversized heading, inline CTA, and a bottom monospace meta row of three labels.
Centered typographic hero fully enclosed inside a single muted, rounded panel rather than sitting directly on the page background: an oversized heading, one CTA, and a bottom row of up to three short meta labels joined by bullet separators.
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/hero122?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero122?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero122.tsx, the badge7 eyebrow badge and button12 CTA button it renders through, and its dependencies.
The installed file exports hero122Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero122, hero122Demo } from "@/components/beste/block/hero122";
export default function Page() {
return <Hero122 {...hero122Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Hero122 } from "@/components/beste/block/hero122";
export default function Page() {
return (
<Hero122
badge={{ label: "Now booking" }}
button={{ label: "Check availability", href: "https://beste.co" }}
labels={{
metaOne: "Studio of two",
metaTwo: "Q3 availability",
metaThree: "Remote, GMT+1",
}}
heading="Big ideas, <strong>quietly executed.</strong>"
description="We are a small studio that trades loud reveals for considered work."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow badge above the heading |
button | ActionButton | – | Single CTA rendered through Button12 |
labels | Hero122Labels | {} | Up to three short meta strings shown below the divider |
heading | string | – | Heading; supports inline <strong> for the accent phrase |
description | string | – | Supporting copy under the heading |
className | string | – | Extra classes for the outer <section> |
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Hero122Labels = {
metaOne?: string;
metaTwo?: string;
metaThree?: string;
};metaOne, metaTwo, metaThree), run through .filter(Boolean) before rendering, so any missing slot collapses cleanly instead of leaving an empty gap or a stray bullet.• separator is inserted before every rendered meta item except the first one, so the separator count always tracks the number of labels actually supplied, not a fixed count of three.bg-muted rounded-md panel with its own internal padding, rather than directly on the page background.heading is capped at md:text-5xl lg:text-6xl, a smaller ceiling than the lg:text-7xl used by the plain full-bleed heroes in this set, since it has to fit inside the card.hero68
Centered hero with three feature highlights displayed as icon cards with descriptions below the CTA. Perfect for platform and infrastructure products.
hero120
Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.
hero119
Full-bleed image hero with an oversized three-word display heading, a row of monospace meta labels, a bold sub-headline, and a featured card with thumbnail, category, paginated index, and title.
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.
hero7
Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.
hero80
Centered hero with inset background media and overlapping product image