Centered Studio Hero

(Auralis Studio)

Light, drawn by hand.

We design lamps the way studios used to make instruments — slowly, in small runs, by people who still answer the phone.

About this block

Centered Studio HeroPRO

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.

Hero142: Centered Studio Hero

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.

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.

Upgrade Now

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

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringHeading HTML string; wrap a phrase in <strong> to mute it
descriptionstringSupporting paragraph under the heading
buttonsActionButton[][]CTA buttons rendered as Button12 pills
classNamestringExtra classes for the outer <section>
ts
type ActionButton = {
  label: string;
  href: string;
  tone?: "dark" | "outline";
};

Behavior notes

  • 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.
  • Each button falls back to 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.
  • This is the only hero in the set using standard 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.

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.

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.

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.

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

hero124

Profile Hero With Chart

Studio-profile hero: an eyebrow, oversized heading, supporting copy and a CTA on the left, beside a muted stage showcasing a slider-control piece on the right.