Work with us
We grow slowly and only when the listening can keep up. If you have done the long training and would rather sit in a home than a clinic, we would like to hear from you.
Every application is read by a practitioner, and everyone hears back, within two weeks, with a reason.
A careers section: a serif heading that settles in word by word, an intro, a pill action and a photograph drifting inside its frame on the left, beside ruled open roles with serif titles and small-caps type and place that lift an arrow on hover, and a note on how applications are answered.
A hiring section for a practice that adds one chair at a time: the invitation, a pill action and a photograph on one side, a ruled list of open roles with an arrow that lifts on hover on the other, closed by a note about how applications are actually answered.
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/careers58?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/careers58?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/careers58.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports careers58Demo alongside the block: the exact props behind the preview above. Spread it to get a working careers section in one line.
import { Careers58, careers58Demo } from "@/components/beste/block/careers58";
export default function Page() {
return <Careers58 {...careers58Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Careers58 } from "@/components/beste/block/careers58";
export default function Page() {
return (
<Careers58
eyebrow="Work with us"
heading="A fourth chair, for the right person."
description="We grow slowly and only when the listening can keep up."
button={{ label: "Send an open application", href: "mailto:hello@beste.co", tone: "dark" }}
image={{ src: "/rooms/table.jpg", alt: "A calm room with a long stone table and linen chairs" }}
roles={[
{ title: "Psychotherapist, evenings", type: "Part time", place: "Lisbon", href: "/roles/therapist" },
{ title: "Practice coordinator", type: "Full time", place: "Lisbon", href: "/roles/coordinator" },
]}
note="Every application is read by a practitioner, and everyone hears back within two weeks."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Invitation paragraph under the heading |
button | ActionButton | – | Pill action for open applications |
image | { src: string; alt: string } | – | Photograph under the copy column |
roles | Role[] | [] | Open positions, in the order given |
note | string | – | Short note under the roles list |
className | string | – | Extra classes for the outer <section> |
type Role = {
title: string;
type: string;
place: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link, so the hit target is the full strip rather than the title alone, and the arrow at the end is decoration inside that link rather than a second target.type and place are joined with a middle dot inside a single span, so they wrap together and never leave the dot stranded at the end of a line.motion-safe:, so the hover affordance is dropped for reduced motion while the row stays clickable.ul with divide-y and a border on both ends, so the rules come from the list; adding a role adds a rule and nothing needs styling per position.-10% to 10% against a 1.2 scale, and clears from blur(24px) on decode with a complete check on mount so a cached file is not left blurred.careers51
A light editorial careers section with a monospace eyebrow over a hairline rule, a two-column heading, and a sticky culture photo with a gradient caption beside team filter pills and hairline job rows showing location, contract type, and a hover arrow.
careers50
Centered careers intro with eyebrow, highlighted heading and supporting copy above a three-image gallery — one wide frame beside two portraits.
careers52
A job description laid out as a reading column with checked responsibility lists and a candid caveat panel, against a sticky rail carrying the published salary band, level, and location alongside the apply action.