Hiring Process In FullPRO

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.

Careers53: Hiring Process In Full

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the hairline rule, rendered through Badge23
headingstringSection heading in the left column of the header
descriptionstringSupporting paragraph, right-aligned from md up
totalLabelstringTotal time commitment, under the paragraph
paidLabelstringThe word shown on the accent chip
stagesStage[][]Interview stages, numbered automatically
promisesTitlestringHeading in the promises panel
promisesPromiseItem[][]Commitments that hold regardless of outcome
mediaReactNodeLive asset on the tile, card31 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
mediaCaptionstringCaption under the tile
button{ label: string; href: string }Action in the sticky column
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type Stage = {
  title: string;
  detail: string;
  length: string;
  who: string;
  paid?: boolean;
};

type PromiseItem = {
  title: string;
  description: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers43

Hiring Process

The studio's interview process as a connected, numbered step flow.

PRO

careers10

Hiring Process Timeline

Step-by-step hiring process timeline with numbered stages. Shows candidates the interview journey from application to onboarding.

PRO

careers52

Single Role Detail

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.

FREE

careers56

Role Fit Finder

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.

PRO

careers39

Candidate Experience Guide

Two-column guide with preparation tips and company commitments to candidates. Sets expectations for the hiring process with contact info.

PRO

careers17

Job Application Form

Job application form with input fields, file upload area, and position summary sidebar. Complete apply page layout for career sites.