Hiring by the Numbers
A recruitment stats dashboard for a careers page. A top row of metric cards shows headline numbers (applications per month, average time-to-hire, offer acceptance rate). Below, a bordered panel breaks the pipeline down stage by stage (applied, recruiter screen, team interview, final round, offer, hired) with a count and a proportional progress bar per stage.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/hiring-by-the-numbers.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/careers/careers26.tsx instead.
Usage
The file also exports careers26Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { Careers26, careers26Demo } from "@/components/blocks/careers/careers26"; export default function Page() { return <Careers26 {...careers26Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Hiring by the numbers" | Section heading. |
| description | string | "A look at how our recruiting pipeline performs..." | Section subheading. |
| metrics | HiringMetric[] | none | Headline stat cards shown in the top row. |
| stages | HiringStage[] | none | Pipeline stages with counts, each rendered with a proportional bar. |
| className | string | none | Extra classes for the outer section element. |
Types
interface HiringMetric { label: string; value: string; helpText: string; } interface HiringStage { stage: string; count: number; percent: number; // 0-100, controls the bar width }
Behavior notes
- Fully static: the stage bars are plain divs with an inline `width` style computed from the `percent` field in the demo data, no chart library and no client-side computation.
More Careers Blocks
View all →job-listings-list
Job Listings List
A vertical list of open roles with department badge, location, employment type, and an apply link per row.
job-openings-grid
Job Openings Grid
A responsive card grid of open roles with department badge, location, employment type, and an apply link.
department-grouped-positions
Department-Grouped Positions
Open jobs grouped under department headings with minimal single-line rows for title, location, and type.
perks-open-positions
Perks & Open Positions
A benefits icon grid followed by a list of open positions with title, department, and location.
featured-role-with-positions
Featured Role with Positions
A larger featured job card with a 'Hiring now' badge, followed by a compact list of additional openings.
tab-filtered-job-board
Tab-Filtered Job Board
Department tabs (All/Engineering/Design/Marketing) that filter which job list is shown.