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.
Simple centered hero with a parenthetical eyebrow badge over a balanced heading with an inline highlighted phrase, a short description, and a pair of pill-shaped buttons with animated seals. Unlike the rest of the Auralis hero set it carries no background photo, just a plain section on the page background.
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/hero142?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero142?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero142.tsx, the badge7 and button12 components it uses for the eyebrow label and the two CTA buttons, and its dependencies.
The installed file exports hero142Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero142, hero142Demo } from "@/components/beste/block/hero142";
export default function Page() {
return <Hero142 {...hero142Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero142 } from "@/components/beste/block/hero142";
export default function Page() {
return (
<Hero142
badge={{ label: "Auralis Studio" }}
heading="Light, drawn <strong>by hand.</strong>"
description="We build fixtures the way studios used to build instruments, slowly, in small runs."
buttons={[
{ label: "See the collection", href: "https://beste.co", tone: "dark" },
{ label: "Book an intro call", href: "https://beste.co", tone: "outline" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Heading HTML string; wrap a phrase in <strong> to mute it |
description | string | – | Supporting paragraph under the heading |
buttons | ActionButton[] | [] | CTA buttons rendered as Button12 pills |
className | string | – | Extra classes for the outer <section> |
type ActionButton = {
label: string;
href: string;
tone?: "dark" | "outline";
};heading is injected with dangerouslySetInnerHTML, so any <strong> inside the string is styled via [&>strong]:text-muted-foreground rather than requiring a separate highlight prop; the demo mutes "by hand." this way.tone="dark" when not set on that entry, so passing a buttons array with no tone renders every pill solid dark; the demo explicitly sets the second one to "outline".Button12's hover state slides the label text out the bottom while a duplicate drops in from the top, and swaps the seal icon diagonally out one corner as a copy enters the opposite one, both over a 300ms motion-safe transition.py-16 md:py-24 section padding instead of a full-bleed min-h-[600px] photo layout, so it reads as a lighter, content-only variant meant to sit lower on a page rather than as the very first fold.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.
hero50
Clean centered hero with clickable announcement banner pill above the heading with sparkle icon. Perfect for product launches and feature announcements.
hero36
Centered hero with gradient-highlighted heading text and trusted-by logo cloud below CTA buttons. Perfect for B2B SaaS and enterprise products.
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.