Step-by-step hiring process timeline with numbered stages. Shows candidates the interview journey from application to onboarding.
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.
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/careers10?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Section eyebrow badge above the heading |
heading | string | – | Section heading, supports inline <strong> |
description | string | – | Lead paragraph below the heading |
items | StepItem[] | [] | Numbered stages rendered as the timeline |
className | string | – | Extra classes for the outer <section> |
type StepItem = {
title: string;
description?: string;
};badge, heading, or description is set; with all three omitted the timeline renders alone.heading is injected via dangerouslySetInnerHTML, so inline <strong> markup is honored and styled text-primary; pass only trusted strings since raw HTML is not sanitized.badge.variant falls back to "default" when omitted (badge.variant ?? "default"), while badge.label is required whenever a badge object is present.index + 1), not from any field on StepItem, so ordering is purely positional.index < items.length - 1), so a single-item list shows no connector.description is optional and skipped entirely when absent, leaving just the title next to its numbered marker.careers24
First 90 days onboarding timeline with phase cards and activity checklists. Shows new hires what to expect from orientation to ownership.
careers26
Recruitment statistics dashboard with key metrics, trends, and detailed hiring process stats. Transparent data-driven hiring showcase.
careers15
A typical workday timeline with time stamps, activity icons, and descriptions. Shows candidates what daily life looks like at the company.
careers36
Team lead profiles with photos, bios, and department badges. Introduces future managers to candidates with detailed backgrounds.
careers39
Two-column guide with preparation tips and company commitments to candidates. Sets expectations for the hiring process with contact info.