Hiring Process Timeline

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

PRO

Careers10: Hiring Process Timeline

A centered, single-column hiring timeline: an optional badge, <strong>-aware heading, and lead paragraph sit above a vertical list of numbered stages, each drawing a circular index marker, a title, an optional description, and a connector line to the next step.

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.

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/careers10?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/careers10.tsx, plus the badge shadcn/ui primitive it uses for the section eyebrow.

Quick start

The installed file exports careers10Demo alongside the block: the exact props behind the preview above. Spread it to get a working hiring timeline in one line.

tsx
import { Careers10, careers10Demo } from "@/components/beste/block/careers10";

export default function Page() {
  return <Careers10 {...careers10Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Careers10 } from "@/components/beste/block/careers10";

export default function Page() {
  return (
    <Careers10
      badge={{ label: "Our Process", variant: "secondary" }}
      heading="How we <strong>hire</strong>"
      description="A transparent, respectful hiring process from application to onboarding."
      items={[
        { title: "Application Review", description: "We respond within 5 business days." },
        { title: "Intro Call", description: "A 30-minute call with our recruiter." },
        { title: "Offer & Onboarding", description: "Receive your offer and start onboarding." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Section eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringLead paragraph below the heading
itemsStepItem[][]Numbered stages rendered as the timeline
classNamestringExtra classes for the outer <section>
ts
type StepItem = {
  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

careers24

Onboarding Journey Preview

First 90 days onboarding timeline with phase cards and activity checklists. Shows new hires what to expect from orientation to ownership.

PRO

careers26

Hiring by the Numbers

Recruitment statistics dashboard with key metrics, trends, and detailed hiring process stats. Transparent data-driven hiring showcase.

PRO

careers15

Day in the Life Timeline

A typical workday timeline with time stamps, activity icons, and descriptions. Shows candidates what daily life looks like at the company.

PRO

careers36

Hiring Manager Profiles

Team lead profiles with photos, bios, and department badges. Introduces future managers to candidates with detailed backgrounds.

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.