Staaarter

Hiring Process

A visually-connected numbered step flow (Apply, Portfolio Review, Team Interview, Paid Trial Project, Offer) with numbered circles joined by a connector line, laid out horizontally on desktop and stacked vertically on mobile.

By Staaarter Team
Careers
Docs
Live preview

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-process.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/careers/careers43.tsx instead.

Usage

The file also exports careers43Demo, 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 { Careers43, careers43Demo } from "@/components/blocks/careers/careers43";

export default function Page() {
  return <Careers43 {...careers43Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"Hiring Process"Small label above the heading.
headingstring"How we hire"Section heading.
descriptionstringnoneSection intro paragraph.
stepsHiringStep[]noneOrdered hiring process steps, rendered as numbered connected circles.
classNamestringnoneExtra classes for the outer section element.

Types

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

Behavior notes

  • Fully static: the step list renders fixed demo data in order, there is no client-side state.
  • The connector between circles is a plain div: a vertical border segment on mobile (flex-col) and a horizontal one on desktop (flex-row), switched purely with Tailwind responsive classes, no JS measurement involved.