Benefits & Perks

Studio benefits grid with an accent highlight and icon cards.

PRO

Careers41: Benefits & Perks

A split-header careers section that pairs an eyebrow badge and large heading on the left with a lead paragraph on the right, above a responsive benefits grid of icon cards where any card flagged accent renders as a filled primary tile and the rest render as bordered card surfaces.

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/careers41?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

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

tsx
import { Careers41, careers41Demo } from "@/components/beste/block/careers41";

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

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

tsx
import { HeartPulse, Plane, Sparkles } from "lucide-react";
import { Careers41 } from "@/components/beste/block/careers41";

export default function CareersPage() {
  return (
    <Careers41
      label="Life at the studio"
      heading="Perks that let the work breathe"
      lead="These are the standards we hold ourselves to: room to think, time to recover, and the tools to make the craft feel effortless."
      benefits={[
        { icon: Sparkles, title: "Four-day creative weeks", description: "Fridays stay open for deep work.", accent: true },
        { icon: HeartPulse, title: "Care that's covered", description: "Premium medical, dental, and vision." },
        { icon: Plane, title: "Unmetered time off", description: "Take the days you need." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered inside a Badge6; omitted when falsy
headingstringLarge section heading; omitted when falsy
leadstringRight-column lead paragraph; omitted when falsy
benefitsBenefit[][]Cards rendered in the benefits grid
classNamestringExtra classes for the outer <section>
ts
type Benefit = {
  icon: LucideIcon;
  title: string;
  description: string;
  accent?: boolean;
};

Behavior notes

More Careers blocks

View all Careers
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.

PRO

careers49

Benefits Breakdown

Categorized studio benefits with checklists per category.

PRO

careers38

Work Perks Bento Grid

Bento-style grid of work perks with featured image card and icon cards. Mixed layout showcasing PTO, wellness, equipment, and team events.

PRO

careers11

Culture & Values

Company values grid with icon cards and employee testimonial quote. Showcases team culture and work philosophy.

PRO

careers4

Perks & Open Positions

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

PRO

careers2

Job Openings Grid

Job openings grid with department badges, location tags, and apply buttons. Card-based layout for career pages.