Staaarter

Employee Benefits Grid

A responsive grid of benefit cards, each with a lucide icon, a short title, and a one-line description. Ideal for a careers page section summarizing what employees get beyond salary.

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/employee-benefits-grid.json

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

Usage

The file also exports careers9Demo, 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 { Careers9, careers9Demo } from "@/components/blocks/careers/careers9";

export default function Page() {
  return <Careers9 {...careers9Demo} />;
}

Props

PropTypeDefaultDescription
headingstringnoneSection heading above the benefits grid.
subheadingstringnoneShort supporting line under the heading.
benefitsBenefitItem[]noneList of benefit cards to render.
classNamestringnoneExtra classes for the outer section element.

Types

interface BenefitItem {
  title: string;
  description: string;
  icon: "health" | "remote" | "growth" | "leave" | "equity" | "wellness";
}

Behavior notes

  • Fully static. Icons are chosen by a fixed internal mapping from the icon key to a lucide-react icon, not passed as component values, so this stays a plain Server Component.
  • The grid reflows from 1 to 2 to 3 columns by viewport width; nothing is interactive or clickable.