Figures Hero

A practice, not a platform

Threepeoplewhowillrememberyourname.

Altair is deliberately small: three practitioners, one address, and a waiting list we keep short on purpose. You will see the same person every week, and they will know where you left off.

0
Practitioners
0
Clients each, at most
0%
See the same person every session
About this block

Figures HeroPRO

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.

Hero184: Figures Hero

A hero that closes on its numbers: a wide headline beside the intro and two pills, then a ruled row of figures that count up from zero when they reach the viewport.

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

Base UI flavor

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

This installs the block to components/beste/block/hero184.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

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

tsx
import { Hero184, hero184Demo } from "@/components/beste/block/hero184";

export default function Page() {
  return <Hero184 {...hero184Demo} />;
}

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

tsx
import { Hero184 } from "@/components/beste/block/hero184";

export default function Page() {
  return (
    <Hero184
      eyebrow="A practice, not a platform"
      heading="Three people who will remember your name."
      description="Deliberately small: three practitioners, one address, and a short waiting list."
      buttons={[
        { label: "Meet us on a call", href: "/call" },
        { label: "Why we stay small", href: "/about", tone: "outline" },
      ]}
      figures={[
        { value: 3, label: "Practitioners" },
        { value: 12, label: "Clients each, at most" },
        { value: 96, suffix: "%", label: "See the same person every session" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the headline
headingstringHeadline, rendered as the page h1 through Text1
descriptionstringParagraph in the narrow column
buttonsActionButton[][]Pill actions under the paragraph
figuresFigure[][]Counting figures in the ruled row
classNamestringExtra classes for the outer <section>
ts
type Figure = {
  value: number;
  suffix?: string;
  label: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • Each figure counts independently when it personally reaches the viewport, and useInView is set to once, so scrolling back up does not replay it.
  • The figure and its label sit on one baseline rather than stacked, which is what lets three of them read as a sentence across the foot of the hero instead of as a stats panel.
  • The number is rounded every frame and set in tabular-nums, so the row does not change width while the count climbs.
  • suffix is a free string appended after the number, so %, + or x all work without the block parsing anything.
  • The headline runs with trigger="mount", since a hero sits above the fold, and the right column waits on 0.4 + heading.split(" ").length * 0.07.
  • Nothing here loads: no photograph, no grain, no scroll parallax, only the counters' own view observers.
  • The figures row is sm:grid-cols-3, so three is the intended count; a fourth wraps to a new row rather than compressing the first three.

More Hero blocks

View all Hero
PRO

hero185

Logos Hero

A centred hero with an eyebrow, a serif headline that settles in word by word, an intro and a sliding-marker pill, closed by a ruled row where greyscale partner logos drift right to left behind soft edge fades, next to a small-caps label.

PRO

hero179

Turning Word Hero

A hero whose serif headline always breaks over two lines, the second one a word that takes turns, each blurring in as the last blurs out over a line kept at a fixed height, beside an intro and a sliding-marker pill, above three photographs that drift at their own pace as the page scrolls, the middle one set a step lower.

PRO

hero176

Unveiling Hero

A centred hero: eyebrow, a serif headline settling in word by word, intro and two sliding-marker pills, then a wide photograph that unveils itself from a smaller inset frame and keeps drifting as the page scrolls, closed by a row of dotted facts.

PRO

hero186

Half Photo Hero

A full-height hero split down the middle: eyebrow, a serif headline that settles in word by word, an intro, two sliding-marker pills on the left, and a photograph filling the right half edge to edge that zooms out on load and drifts slower than the page.

PRO

hero177

Two Tempos Hero

A hero with a serif headline settling in word by word, an intro and a sliding-marker pill on the left, and two offset portrait photographs on the right that drift at different speeds as the page scrolls, one sitting a step lower than the other.

PRO

hero175

Split Portrait Hero

A light split hero: eyebrow, a serif headline settling in word by word, intro, a sliding-marker pill and a text link on the left, and a portrait photograph drifting inside its frame on the right with a frosted avatar proof card overlapping its corner, under a slowly drifting soft light.