Benefits Breakdown

Categorized studio benefits with checklists per category.

PRO

Careers49: Benefits Breakdown

A left-aligned careers benefits section that renders an optional eyebrow badge and heading above a two-column grid of category cards, each card showing an icon in a tinted square, a category name, and a checklist of items prefixed with a check mark.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/careers49?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/careers49?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/careers49.tsx.

Quick start

The installed file exports careers49Demo alongside the block: the exact props behind the preview above. Spread it to get a working benefits grid in one line.

tsx
import { Careers49, careers49Demo } from "@/components/beste/block/careers49";

export default function Page() {
  return <Careers49 {...careers49Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { GraduationCap, HeartPulse } from "lucide-react";
import { Careers49 } from "@/components/beste/block/careers49";

export default function Page() {
  return (
    <Careers49
      label="Life At Polaris"
      heading="Everything the studio puts behind your craft."
      categories={[
        {
          icon: HeartPulse,
          name: "Health & care",
          items: [
            "Fully covered medical, dental and vision.",
            "Annual wellness stipend for whatever resets you.",
          ],
        },
        {
          icon: GraduationCap,
          name: "Growth & craft",
          items: ["A yearly learning budget for courses and books."],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered inside a Badge6; omitted when falsy
headingstringSection heading below the badge; omitted when falsy
categoriesBenefitCategory[][]Cards rendered in the two-column grid
classNamestringExtra classes merged onto the outer <section>
ts
type BenefitCategory = {
  icon: LucideIcon;
  name: string;
  items: string[];
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers4

Perks & Open Positions

Combined perks and job listings section with benefits grid and open positions list. Ideal for complete career pages.

PRO

careers41

Benefits & Perks

Studio benefits grid with an accent highlight and icon cards.

PRO

careers40

Open Roles

A studio jobs list with role meta, salary and apply arrows.

PRO

careers48

Join The Studio

Sticky employer-value intro beside a scrollable open-roles list.

PRO

careers1

Job Listings List

Job listings section with role cards showing department, location, and employment type. Clean list layout with hover effects and apply buttons.

PRO

careers9

Employee Benefits Grid

Benefits and perks showcase with icon cards in a responsive grid. Highlights company offerings like health, remote work, and growth opportunities.