Staaarter

Benefits & Perks

A benefits and perks section built for a design/creative studio: a large accent-bordered featured card (e.g. equity) sits beside a grid of smaller icon cards covering health, PTO, equipment, learning budget, and family benefits.

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

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

Usage

The file also exports careers41Demo, 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 { Careers41, careers41Demo } from "@/components/blocks/careers/careers41";

export default function Page() {
  return <Careers41 {...careers41Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"Benefits & Perks"Small badge label above the heading.
headingstring"Everything you need to do great work"Section heading.
descriptionstringnoneSection intro paragraph.
featuredPerkCardnoneThe large accent-bordered featured perk card.
perksPerkCard[]noneSmaller icon perk cards in the grid.
classNamestringnoneExtra classes for the outer section element.

Types

type PerkCard = {
  icon: "wallet" | "health" | "pto" | "equipment" | "learning" | "family";
  title: string;
  description: string;
};

Behavior notes

  • Fully static: the featured card and perk grid render fixed demo data, there is no client-side state.
  • icon is a fixed enum mapped to a hardcoded lucide-react icon internally, so only the six named icon keys render.