Centred Serif Hero

Therapy and coaching in Lisbon

Asteadyhourinanunsteadyweek.

Altair is a small practice for people carrying more than they can say out loud. One room, one person who listens all the way through, and no hurry.

Portrait of a client
Portrait of a client
Portrait of a client
Portrait of a client

Trusted by 140 people this year

About this block

Centred Serif HeroPRO

The plainest hero in the language: a centred eyebrow, a serif headline that settles in word by word, an intro, two sliding-marker pills and an avatar trust line, with no image at all.

Hero180: Centred Serif Hero

The plainest hero in the set: a centred headline that settles in word by word, an intro, two pills and an avatar trust line, with no photograph and nothing to load.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero180, hero180Demo } from "@/components/beste/block/hero180";

export default function Page() {
  return <Hero180 {...hero180Demo} />;
}

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

tsx
import { Hero180 } from "@/components/beste/block/hero180";

export default function Page() {
  return (
    <Hero180
      eyebrow="Therapy and coaching in Lisbon"
      heading="A steady hour in an unsteady week."
      description="One room, one person who listens all the way through, and no hurry."
      buttons={[
        { label: "Arrange a first call", href: "/call" },
        { label: "How it works", href: "/how", tone: "outline" },
      ]}
      avatars={[{ src: "/people/one.jpg", alt: "Portrait of a client" }]}
      proof="Trusted by 140 people this year" 
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the headline
headingstringHeadline, rendered as the page h1 through Text1
descriptionstringParagraph under the headline
buttonsActionButton[][]Pill actions, wrapped and centred
avatarsAvatar[][]Overlapping client portraits
proofstringTrust line beside the avatars
classNamestringExtra classes for the outer <section>
ts
type Avatar = {
  src: string;
  alt: string;
};

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

Behavior notes

  • Nothing here loads except the avatars: no background photograph, no grain filter, no scroll listener. It is the hero to reach for when the page below is already image-heavy and the top should paint immediately.
  • The headline runs with trigger="mount", since a hero is above the fold and a scroll-triggered stagger would never fire.
  • Everything after it is offset from 0.4 + heading.split(" ").length * 0.07, so the intro, the buttons and the trust line arrive in reading order however long the headline runs.
  • The column is capped at max-w-4xl while the intro is held to max-w-2xl inside it, so the headline can run wide while the paragraph keeps a readable measure.
  • Buttons wrap and centre, so two actions stack cleanly on a phone rather than shrinking side by side.
  • Avatars overlap with -space-x-3, each ringed in border-background, so the separation comes from the ring rather than from a gap.
  • Every part is optional, so this collapses to a headline and a single button without any layout compensation.

More Hero blocks

View all Hero
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

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

hero184

Figures Hero

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.

PRO

hero182

Centred Photo Hero

A full-height photographic hero with everything centred: the photograph zooms out on load and drifts slower than the page under a dark scrim and film grain, beneath an eyebrow, a serif headline that settles in word by word, an intro and two sliding-marker pills.

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

hero181

Benefits Split Hero

A split hero: eyebrow, a serif headline that settles in word by word, an intro, three ringed check benefits and a sliding-marker pill on the left, and a portrait photograph drifting inside its frame on the right.