An interview process published as numbered hairline stages carrying length, who you meet, and an accent chip where the work is paid, closing on a soft promises panel beside a live card for the person who runs it.
An interview process published as numbered hairline stages carrying length, who you meet and an accent chip where the work is paid, closing on a soft promises panel beside a live card for the person who runs it.
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/careers53?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/careers53?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/careers53.tsx, the card31 person piece it floats on the tile (installed to components/beste/piece/card31.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.
The installed file exports careers53Demo alongside the block: the exact props behind the preview above. Spread it to get a working process page in one line.
import { Careers53, careers53Demo } from "@/components/beste/block/careers53";
export default function ProcessPage() {
return <Careers53 {...careers53Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Card31 } from "@/components/beste/piece/card31";
import { Careers53 } from "@/components/beste/block/careers53";
export default function ProcessPage() {
return (
<Careers53
badge={{ label: "How we hire" }}
heading="Four conversations, about six hours, and we pay for the long one"
description="Published in full so you can decide whether it is worth your evenings."
totalLabel="About six hours in total, spread over two to three weeks"
paidLabel="Paid"
stages={[
{
title: "A written reply",
detail: "An engineer reads it, not a filter, and you hear back within a week.",
length: "Your time only",
who: "Read by an engineer",
},
{
title: "A real problem, paid",
detail: "A scoped piece of work from our actual backlog, done in your own time.",
length: "About four hours",
who: "Reviewed by two engineers",
paid: true,
},
]}
promisesTitle="What we promise either way"
promises={[
{
title: "An answer within a week, always",
description: "At every stage, including the first.",
},
]}
media={
<Card31
avatar={{ src: "/people/priya.jpg", alt: "Portrait of Priya Nandan" }}
name="Priya Nandan"
role="Runs the second conversation"
status="Usually replies same day"
availability="free"
rows={[{ label: "Been here", value: "5 years" }]}
/>
}
image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
mediaCaption="Write to her before applying if you want to know whether it is worth it."
button={{ label: "See open roles", href: "/careers" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow above the hairline rule, rendered through Badge23 |
heading | string | – | Section heading in the left column of the header |
description | string | – | Supporting paragraph, right-aligned from md up |
totalLabel | string | – | Total time commitment, under the paragraph |
paidLabel | string | – | The word shown on the accent chip |
stages | Stage[] | [] | Interview stages, numbered automatically |
promisesTitle | string | – | Heading in the promises panel |
promises | PromiseItem[] | [] | Commitments that hold regardless of outcome |
media | ReactNode | – | Live asset on the tile, card31 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
mediaCaption | string | – | Caption under the tile |
button | { label: string; href: string } | – | Action in the sticky column |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type Stage = {
title: string;
detail: string;
length: string;
who: string;
paid?: boolean;
};
type PromiseItem = {
title: string;
description: string;
};String(index + 1).padStart(2, "0") renumbers automatically when stages are reordered or one is inserted.stage.paid is true and paidLabel is set, so the label can be removed globally without editing every stage.length and who are joined into one line with a middle dot, so both are required on every stage. A stage with no meaningful length still needs a string, as the demo shows with "Your time only".totalLabel sits in the header rather than at the end, because the total time commitment is the thing a candidate wants before reading the stages.lg:sticky lg:top-24 lg:self-start. The self-start is required for sticky inside a grid row, and top-24 assumes a fixed header of roughly six rem.bg-muted block whose rows carry border-t, so it reads as a small table inside the panel rather than as a second section.PromiseItem is named rather than being called Promise, since that would shadow the global Promise type inside the installed file.careers10
Step-by-step hiring process timeline with numbered stages. Shows candidates the interview journey from application to onboarding.
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.