Atmospheric Parallax Hero

A curved city beach along a bay

Therapy and coaching, Lisbon and online

Roomtobreathe,andawayforward.

Altair is a small practice for people carrying more than they can say out loud. We work slowly, one conversation at a time, until the next step feels like yours.

Begin a conversation
Portrait of a client
Portrait of a client
Portrait of a client
Portrait of a client

Walking alongside 140 people this year, most of them still with us.

About this block

Atmospheric Parallax HeroPRO

A full-height photographic hero: the image drifts at a slower pace than the page behind a film-grain overlay, and a serif headline settles in word by word ahead of the intro, a soft pill button and an avatar trust line.

Hero174: Atmospheric Parallax Hero

A full-height photographic hero: the picture clears from a blur and drifts at a slower pace than the page behind film grain, while the headline settles in word by word above the intro, a pill and an avatar trust line.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero174, hero174Demo } from "@/components/beste/block/hero174";

export default function Page() {
  return <Hero174 {...hero174Demo} />;
}

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

tsx
import { Hero174 } from "@/components/beste/block/hero174";

export default function Page() {
  return (
    <Hero174
      eyebrow="Therapy and coaching, Lisbon and online"
      heading="Room to breathe, and a way forward."
      description="A small practice for people carrying more than they can say out loud."
      button={{ label: "Begin a conversation", href: "/book" }}
      image={{ src: "/photos/lake.jpg", alt: "Morning mist lifting off a still lake below wooded hills" }}
      avatars={[{ src: "/people/one.jpg", alt: "Portrait of a client" }]}
      proof="Walking alongside 140 people this year."
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the headline
headingstringHeadline, rendered as the page h1 through Text1
descriptionstringParagraph under the headline
buttonActionButtonPill action, optionally with a Lucide icon
image{ src: string; alt: string }Full-bleed background photograph
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";
  icon?: LucideIcon;
};

Behavior notes

  • The photograph and the copy drift at different rates against the same scroll progress, 28% for the image and 12% for the text, which is what gives the section depth rather than moving it as one slab.
  • The picture clears from a 1.12 scale and blur(24px) on decode, with a complete check on mount because a cached image fires its load event before hydration and would otherwise sit blurred forever.
  • The headline runs with trigger="mount", not the component's default "view": a full-height hero is above the fold, so waiting for a scroll would leave it invisible.
  • Everything under it waits on 0.4 + heading.split(" ").length * 0.07, the same arithmetic as the stagger, so the copy lands as the last word settles however long the headline runs.
  • object-top on the photograph keeps the horizon in frame as the parallax moves it, which a centred crop would lose.
  • Layers sit on explicit negative z-indices inside an isolate context, so the image, the gradient and the grain stack correctly without escaping into the page around them.

More Hero blocks

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

hero115

Cinematic Image Hero

Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.

PRO

hero189

Command on Photo Hero

A full-height photographic install hero: the photo blurs in and drifts slower than the page under a scrim and film grain, a serif headline settles in word by word, then a frosted command pill that copies the install command on click, two sliding-marker pills and a short column of figures.

PRO

hero187

Search Hero

A centred photographic hero built around a search field: the photograph blurs in and drifts slower than the page under a dark scrim and film grain, a serif headline settles in word by word, then a rounded search field with a keyboard shortcut hint, a row of quick links and optional pills. The field can hand its click to a command palette instead of being a form.

PRO

hero146

Full Bleed Image Hero

A full-bleed photographic hero with a gradient scrim, an eyebrow over an oversized light heading, paired accent and hairline actions, and a three-figure proof row along the bottom rule.