A small practice in Lisbon
Therapy and coaching for people who are tired of holding everything at once. One room, one steady person, and as much time as it takes.
Ninety people came through the door last year. Most are still coming.
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.
A split hero: headline, intro, a pill and a quiet link on one side, a portrait photograph drifting inside its frame on the other, with an avatar trust card inset over its corner from md up.
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/hero175?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero175?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero175.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports hero175Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero175, hero175Demo } from "@/components/beste/block/hero175";
export default function Page() {
return <Hero175 {...hero175Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero175 } from "@/components/beste/block/hero175";
export default function Page() {
return (
<Hero175
eyebrow="A small practice in Lisbon"
heading="Somewhere to put it all down."
description="Therapy and coaching for people who are tired of holding everything at once."
button={{ label: "Book a first call", href: "/call" }}
link={{ label: "How the first session works", href: "/first-session" }}
image={{ src: "/photos/pines.jpg", alt: "Pine trees standing in soft morning fog" }}
avatars={[{ src: "/people/one.jpg", alt: "Portrait of a client" }]}
proof="Ninety people came through the door last year."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the headline |
heading | string | – | Headline, rendered as the page h1 through Text1 |
description | string | – | Paragraph under the headline |
button | ActionButton | – | Pill action |
link | { label: string; href: string } | – | Quieter link beside the pill |
image | { src: string; alt: string } | – | Portrait photograph |
avatars | Avatar[] | [] | Overlapping client portraits |
proof | string | – | Trust line beside the avatars |
className | string | – | Extra classes for the outer <section> |
type Avatar = {
src: string;
alt: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};md up, where it overlaps the photograph's left edge on a translucent blurred panel. Below md it drops back into normal flow under the picture, because an inset card on a phone would cover most of the image.-left-16 offset deliberately pulls it out of the image column and into the gutter, which is what makes it read as pinned to the photograph rather than laid on top of it.trigger="mount", since a hero is above the fold and a scroll-triggered stagger would never fire.0.4 + heading.split(" ").length * 0.07, so the whole column resolves in reading order behind the headline however long it runs.-10% to 10% against a 1.2 scale and clears from blur(24px) on decode, with a complete check on mount for cached files.motion-safe:, so the affordance is dropped for reduced motion while the link keeps working.hero181
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.
hero186
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.
hero143
A light editorial hero with an oversized display heading on the left, an offset supporting paragraph and accent button on the right, and a full-bleed image band below.
hero135
Two-pane masthead hero: a solid dark editorial panel with eyebrow, value-prop heading, supporting copy, a CTA and an availability note on one side, and a full-bleed image on the other.
hero192
A full-height split install hero: text on the left with an eyebrow, a serif headline that settles in word by word, an intro, a rounded command pill that copies the install command on click and two sliding-marker pills; on the right an edge-to-edge photograph that blurs in and drifts on scroll with a small caption.