Benefits & Perks

Life at Polaris

Perks that let the work breathe

We build for clients who expect their best, so we treat our studio the same way. These are the standards we hold ourselves to — room to think, time to recover, and the tools to make the craft feel effortless.

Four-day creative weeks

Fridays stay open for deep work, side projects, or simply stepping back so the good ideas have space to land.

Profit you share in

Every studio member holds equity and a slice of the quarterly profit pool — the upside belongs to the makers.

Care that's fully covered

Premium medical, dental, and vision for you and your family, plus a stipend for therapy and mental wellbeing.

Unmetered time off

Take the days you need with a four-week minimum we actually enforce, so rest never feels like a negotiation.

A studio kit, on us

Top-tier hardware, the full design stack, and a yearly budget to tune your workspace exactly how you like it.

Craft, always growing

A learning fund, conference travel, and dedicated mentorship to keep your practice sharp and your portfolio alive.

About this block

Benefits & PerksPRO

Studio benefits grid with an accent highlight and icon cards.

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.

Upgrade Now

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

  • The header is a lg:grid-cols-2 split that only becomes two columns at the lg breakpoint; below that the heading block and lead paragraph stack, with lg:items-end bottom-aligning them when side by side.
  • label, heading, and lead are each conditionally rendered and disappear entirely when their prop is falsy, so passing only some of them collapses the header gracefully.
  • heading and description are rendered as plain text nodes, not dangerouslySetInnerHTML, so inline markup like <strong> passed in a string would show as literal characters, not formatting.
  • Each benefit's icon is read as a component (const Icon = benefit.icon) and must be a LucideIcon (or compatible component), not a rendered element.
  • A benefit with accent: true renders a distinct filled bg-primary tile with no border and no hover transition; all other cards render as bordered bg-card surfaces that shift border color and scale their icon on hover.
  • The grid is fixed at lg:grid-cols-3 (two columns at sm, one below), so the layout reads cleanest with a multiple-of-three benefit count; the demo ships six, with the first marked as the accent highlight.
  • Cards are keyed by array index, so reordering or filtering benefits in place can cause React to reuse the wrong DOM nodes; supply a stable list if the array is dynamic.

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

careers54

Benefits And Honest Omissions

A working-here section pairing a six-item icon benefits grid and a captioned full-bleed photograph with two closing cards that set what you get against what the company deliberately does not offer.

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

careers49

Benefits Breakdown

Categorized studio benefits with checklists per category.

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.