A short roles list where the pay band sits on the row rather than behind an application, with a written empty state for when nothing is open and a speculative line underneath.
A short roles list where the pay band sits on the row rather than behind an application, with a written empty state for when nothing is open and a speculative line underneath.
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/careers57?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/careers57?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/careers57.tsx and the badge6 component it uses for the eyebrow (installed to components/beste/component/badge6.tsx).
The installed file exports careers57Demo alongside the block: the exact props behind the preview above. Spread it to get a working roles list in one line.
import { Careers57, careers57Demo } from "@/components/beste/block/careers57";
export default function CareersPage() {
return <Careers57 {...careers57Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Careers57 } from "@/components/beste/block/careers57";
export default function CareersPage() {
return (
<Careers57
eyebrow="Open roles"
heading="We hire slowly and say so"
description="Both roles are advertised with the band we will actually pay."
roles={[
{
title: "Product designer",
team: "Product",
location: "Lisbon or remote in Europe",
pay: "£62,000 to £74,000",
href: "/careers/product-designer",
},
]}
emptyState="Nothing is open at the moment."
speculativeText="Nothing here that fits?"
speculativeLink={{ label: "Write to us anyway", href: "/contact" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the hairline rule |
heading | string | – | Section heading under the rule |
description | string | – | Supporting paragraph |
roles | Role[] | [] | One linked row per open role |
emptyState | string | – | Sentence shown when roles is empty |
speculativeText | string | – | Line under the list |
speculativeLink | SpeculativeLink | – | Link beside that line |
className | string | – | Extra classes for the outer section |
type Role = {
title: string;
team: string;
location: string;
pay: string;
href: string;
};
type SpeculativeLink = {
label: string;
href: string;
};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.
careers56
A hiring section that answers three questions instead of listing a job board: the answers land on one open role with its team, its location, and its published pay band, and the photograph beside it changes to the part of the studio that role sits in.