Why Join Us

Team stats band paired with benefit highlights.

PRO

Careers47: Why Join Us

A recruiting section that stacks an optional eyebrow badge and large heading over a four-up stats band on a bordered card, followed by a three-column grid of benefit cards, each with a tinted icon tile that inverts on hover, a title, and a description.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Careers47, careers47Demo } from "@/components/beste/block/careers47";

export default function CareersPage() {
  return <Careers47 {...careers47Demo} />;
}

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

tsx
import { Globe, Rocket } from "lucide-react";
import { Careers47 } from "@/components/beste/block/careers47";

export default function CareersPage() {
  return (
    <Careers47
      label="Why Join Us"
      heading="We build brave creative with people who like the work."
      stats={[
        { value: "120", suffix: "+", label: "Creatives across four studios" },
        { value: "18", suffix: "mo", label: "Median tenure and climbing" },
      ]}
      benefits={[
        { icon: Rocket, title: "Real ownership, fast", description: "You lead pitches in your first quarter." },
        { icon: Globe, title: "Work from anywhere", description: "Remote-first default with two offsites a year." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered inside a Badge6; hidden when omitted
headingstringSection heading; hidden when omitted
statsStat[][]Rows rendered in the stats band
benefitsBenefit[][]Cards rendered in the benefit grid
classNamestringExtra classes for the outer <section>
ts
type Stat = {
  value: string;
  suffix?: string;
  label: string;
};

type Benefit = {
  icon: LucideIcon;
  title: string;
  description: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers22

Employee Spotlight Story

Featured employee profile with portrait photo, personal quote, and career milestone timeline. Showcases real growth stories.

PRO

careers26

Hiring by the Numbers

Recruitment statistics dashboard with key metrics, trends, and detailed hiring process stats. Transparent data-driven hiring showcase.

PRO

careers7

Culture Stats with Positions

Team culture stats bar followed by detailed job position cards. Combines social proof with open roles listing.

PRO

careers14

Meet the Team Gallery

Team member photo grid with names and roles. Square portrait layout for showcasing leadership and team composition.

PRO

careers4

Perks & Open Positions

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

PRO

careers30

Team Blog Highlights

Engineering and team blog article preview cards with images, excerpts, and authors. Showcases technical depth and knowledge sharing culture.