Unveiling Hero

Therapy, coaching, and the space between

Youdonothavetoarrivewiththewords.

Most people who come to Altair are not sure what they need. That is a fine place to start. We will find the words together, at a pace that lets them mean something.

A quiet pebble beach with a wooded headland
  • Lisbon and online
  • Weekly or fortnightly
  • First call is free
About this block

Unveiling HeroPRO

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.

Hero176: Unveiling Hero

A centred hero that unveils its photograph: the headline settles in word by word above the intro and two pills, then a wide band opens outward from an inset clip, closed by a row of short facts.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero176, hero176Demo } from "@/components/beste/block/hero176";

export default function Page() {
  return <Hero176 {...hero176Demo} />;
}

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

tsx
import { Hero176 } from "@/components/beste/block/hero176";

export default function Page() {
  return (
    <Hero176
      eyebrow="Therapy, coaching, and the space between"
      heading="You do not have to arrive with the words."
      description="Most people who come to us are not sure what they need. That is a fine place to start."
      buttons={[
        { label: "Start a conversation", href: "/book" },
        { label: "See how we work", href: "/approach", tone: "outline" },
      ]}
      image={{ src: "/photos/hills.jpg", alt: "Soft fog rolling over layered green hills" }}
      facts={["Lisbon and online", "Weekly or fortnightly", "First call is free"]}
    />
  );
}

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
image{ src: string; alt: string }The band that unveils under the copy
factsstring[][]Short facts in the closing row
classNamestringExtra classes for the outer <section>
ts
type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The unveil is a clip-path animation from inset(12% ... round 6px) to zero, so the frame opens outward from its own centre rather than fading or sliding. The round 6px is carried in both keyframes, which is what keeps the corners rounded for the whole reveal.
  • The band switches aspect ratio rather than height, 16/9 on a phone becoming 21/9 from md, so the crop stays cinematic on a wide screen without going letterbox-thin on a small one.
  • The section has bottom padding of its own only through the facts row (py-8 rising to py-10), so a hero without facts ends flush against the next section by design.
  • 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 copy, the buttons, the unveil and the facts arrive in that order however long the headline runs.
  • Inside the frame the photograph still drifts -12% to 12% against a 1.25 scale as the page scrolls, so the band keeps moving after the reveal has finished.
  • Facts are plain strings with dot markers drawn as spans, so the row stays a real list without inheriting browser bullet styling.

More Hero blocks

View all Hero
PRO

hero180

Centred Serif Hero

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.

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

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

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

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

hero159

Photo Collage Hero

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.