Staaarter

Career Growth Ladder

A vertical career ladder listing each level from Associate through Principal, with a one-line role description and a handful of key-skill badges per row. Useful for showing candidates a clear growth path on a careers page.

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 badge dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/career-growth-ladder.json

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

Usage

The file also exports careers12Demo, 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 { Careers12, careers12Demo } from "@/components/blocks/careers/careers12";

export default function Page() {
  return <Careers12 {...careers12Demo} />;
}

Props

PropTypeDefaultDescription
headingstringnoneSection heading above the ladder.
subheadingstringnoneShort supporting line under the heading.
levelsCareerLevel[]noneOrdered list of levels, from most junior to most senior.
classNamestringnoneExtra classes for the outer section element.

Types

interface CareerLevel {
  name: string;
  description: string;
  skills: string[];
}

Behavior notes

  • Fully static, purely informational listing. No level is highlighted as the reader's own position, there is no interactivity.