Perks & Open Positions
A benefits/perks icon grid at the top (health coverage, remote-first, unlimited PTO, learning budget, and more), followed by an open positions list with department badge and location per role.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge, button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/perks-open-positions.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/careers/careers4.tsx instead.
Usage
The file also exports careers4Demo, 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 { Careers4, careers4Demo } from "@/components/blocks/careers/careers4"; export default function Page() { return <Careers4 {...careers4Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Why you'll love working here" | Perks section heading. |
| description | string | "Great benefits..." | Perks section subheading. |
| perks | Perk[] | none | Perk labels, rendered with a fixed icon per grid position. |
| positionsHeading | string | "Open positions" | Heading above the positions list. |
| positions | OpenPosition[] | none | List of open roles to render below the perks grid. |
| className | string | none | Extra classes for the outer section element. |
Types
interface Perk { label: string; } interface OpenPosition { id: string; title: string; department: string; location: string; }
Behavior notes
- Fully static: perk icons are a fixed hardcoded array indexed by grid position, not passed as data (a Server Component can't accept a component/function prop from demo data).
- The Apply link per row is a placeholder href, nothing is submitted anywhere.
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.
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.
culture-stats-with-positions
Culture Stats with Positions
A company culture stats bar followed by detailed job position cards with a one-line description each.