Compensation & Total Rewards

Compensation

Transparent total rewards

We believe in paying competitively and sharing our approach openly. Here's how we think about compensation.

Base Salary

Benchmarked to the 75th percentile of market data. We review salaries twice a year and adjust proactively, not just when you ask.

75th percentile benchmark

Equity

Every employee receives equity as part of their offer. We want everyone to benefit from the company's growth and success.

Stock options for all employees

Annual Bonus

Performance-based bonuses tied to individual impact and company goals. Clear criteria so you always know where you stand.

Up to 15% of base salary

Perks & Stipends

Home office setup budget, wellness stipend, learning allowance, and internet reimbursement. Invest in yourself on us.

$5,000 annual stipend

About this block

Compensation & Total RewardsPRO

Transparent compensation philosophy with salary, equity, bonus, and perks cards. Shows total rewards approach with highlighted details.

Careers21: Compensation & Total Rewards

A centered compensation section that renders an optional badge, an inline-<strong> heading, and a lead paragraph above a responsive two-column grid of reward cards, each showing a circular icon, a title, an optional description, and an optional highlighted detail line separated by a top border.

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

Base UI flavor

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

This installs the block to components/beste/block/careers21.tsx, plus the badge shadcn/ui primitive it uses for the section eyebrow.

Quick start

The installed file exports careers21Demo alongside the block: the exact props behind the preview above. Spread it to get a working compensation section in one line.

tsx
import { Careers21, careers21Demo } from "@/components/beste/block/careers21";

export default function Page() {
  return <Careers21 {...careers21Demo} />;
}

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

tsx
import { DollarSign, TrendingUp } from "lucide-react";
import { Careers21 } from "@/components/beste/block/careers21";

export default function Page() {
  return (
    <Careers21
      badge={{ label: "Compensation", variant: "secondary" }}
      heading="Transparent <strong>total rewards</strong>"
      description="How we think about pay, openly."
      items={[
        {
          icon: DollarSign,
          title: "Base Salary",
          description: "Benchmarked to the 75th percentile of market data.",
          detail: "75th percentile benchmark",
        },
        {
          icon: TrendingUp,
          title: "Equity",
          description: "Every employee receives equity as part of their offer.",
          detail: "Stock options for all employees",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringLead paragraph below the heading
itemsRewardItem[][]Cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type RewardItem = {
  icon?: LucideIcon;
  title: string;
  description?: string;
  detail?: string;
};

Behavior notes

  • The entire header block (badge, heading, description) only renders when at least one of badge, heading, or description is truthy; with all three omitted the section is just the card grid.
  • heading is injected via dangerouslySetInnerHTML, and inline <strong> tags are restyled to text-primary with a semibold weight through a [&>strong] selector.
  • Cards use sm:grid-cols-2, so the grid is a single column below the sm breakpoint and two columns above it, regardless of how many items are passed.
  • Each RewardItem field is conditional: the icon circle always renders but stays empty when icon is omitted, while description and detail are each dropped when absent.
  • The detail line renders with a top border and pt-4 spacing, visually separating it as a highlighted stat beneath the description.
  • Cards are keyed by array index, so reordering or filtering items between renders can cause React to reuse the wrong card state; there is no interactivity or callback on any card.
  • badge.variant falls back to "default" when not provided.

More Careers blocks

View all Careers
PRO

careers35

Salary Bands Table

Transparent salary bands with level, role, visual range bars, and equity details. Pay transparency table with responsive card fallback.

PRO

careers11

Culture & Values

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

PRO

careers16

Employee Testimonials

Employee testimonial cards with quotes, avatars, and roles. Social proof grid showcasing team member experiences and company culture.

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

careers20

Diversity & Inclusion

Diversity and inclusion section with representation stats and initiative cards. Showcases company commitment to equity and belonging.

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.