Auralis is a two-person studio for founders who would rather ship one considered thing than ten loud ones. We sit between the wireframe and the warehouse, holding the line on craft from the first sketch to the final pixel.
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.
Two-column studio-profile hero: an eyebrow, heading, supporting copy and a CTA on the left, beside a muted stage on the right that hosts the Ai6 piece, a labeled dial visualization whose marker position is driven entirely by the control prop.
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.
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/hero124?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero124?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero124.tsx, the badge7 eyebrow badge and button12 CTA button it renders through, the ai6 piece that draws the dial visualization on the right, and its dependencies.
The installed file exports hero124Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero124, hero124Demo } from "@/components/beste/block/hero124";
export default function Page() {
return <Hero124 {...hero124Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Hero124 } from "@/components/beste/block/hero124";
export default function Page() {
return (
<Hero124
badge={{ label: "Profile" }}
heading="Calm brands. <strong>Sharp products.</strong> Built to last."
description="Auralis is a two-person studio for founders who would rather ship one considered thing than ten loud ones."
button={{ label: "Read the studio dossier", href: "https://beste.co" }}
control={{
value: 0.35,
label: "Studio dial",
lowLabel: "Restraint",
highLabel: "Expression",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow badge above the heading |
heading | string | – | Heading; supports inline <strong> for the accent phrase |
description | string | – | Supporting copy under the heading |
button | ActionButton | – | Single CTA rendered through Button12 |
control | Control | – | Values passed straight through to the Ai6 dial piece on the right |
className | string | – | Extra classes for the outer <section> |
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Control = {
value: number;
label: string;
lowLabel: string;
highLabel: string;
};min-h-[20rem]/lg:min-h-[26rem] muted stage that only renders anything when control is provided; there is no placeholder or fallback state when it is omitted, so the stage is left empty rather than showing default Ai6 values.control.value (expected as a 0-1 fraction) sets the marker's left offset along a fixed sky-to-amber-to-rose gradient track inside Ai6; the piece itself clamps the resulting percentage with Math.max(0, Math.min(100, value * 100)), so out-of-range numbers are rendered safely rather than pushing the marker outside the track.ai6) instead of a photo, so control fully replaces the imageSrc/imageAlt pattern used elsewhere in the set.heading, badge, and button follow the same shared markup as the rest of the family: <strong> accent via dangerouslySetInnerHTML, Badge7 for the eyebrow, and Button12 (default dark tone) for the CTA.hero184
A text hero with an eyebrow and a serif headline that settles in word by word on the left, the intro and two sliding-marker pills on the right, and a ruled row of three serif figures that count up beneath, with no image.
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.
hero159
A centered hero with an eyebrow, light display heading, and two actions above a staggered three-photo collage whose raised middle tile floats a live booking confirmation.
hero125
Centered eyebrow, oversized heading and CTA above a responsive 3-up portrait gallery with monospace captions.