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.
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.jsonPrefer 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
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Benefits & Perks" | Small badge label above the heading. |
| heading | string | "Everything you need to do great work" | Section heading. |
| description | string | none | Section intro paragraph. |
| featured | PerkCard | none | The large accent-bordered featured perk card. |
| perks | PerkCard[] | none | Smaller icon perk cards in the grid. |
| className | string | none | Extra 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.
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.