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.
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.
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
npx shadcn add "https://ui.beste.co/r/careers47?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow text rendered inside a Badge6; hidden when omitted |
heading | string | – | Section heading; hidden when omitted |
stats | Stat[] | [] | Rows rendered in the stats band |
benefits | Benefit[] | [] | Cards rendered in the benefit grid |
className | string | – | Extra classes for the outer <section> |
type Stat = {
value: string;
suffix?: string;
label: string;
};
type Benefit = {
icon: LucideIcon;
title: string;
description: string;
};label and heading render only when truthy, the stats band renders only when stats.length > 0, and the benefit grid renders only when benefits.length > 0, so an empty block collapses to just its outer padding.md; vertical dividers (md:border-r) appear between stat cells only from md up, and the last cell drops its divider via md:last:border-r-0.stat.suffix is optional and, when present, is rendered in the primary color right after stat.value; omit it and only the value shows.group/careers47): on hover the card border shifts to border-primary/40 and the icon tile inverts from bg-primary/10 text-primary to a solid bg-primary text-primary-foreground.stats and benefits are keyed by array index, so reordering the arrays remounts the affected items rather than moving them.heading is rendered as plain text, so unlike some sibling blocks it does not interpret inline <strong> or other HTML markup.careers22
Featured employee profile with portrait photo, personal quote, and career milestone timeline. Showcases real growth stories.
careers26
Recruitment statistics dashboard with key metrics, trends, and detailed hiring process stats. Transparent data-driven hiring showcase.
careers7
Team culture stats bar followed by detailed job position cards. Combines social proof with open roles listing.
careers14
Team member photo grid with names and roles. Square portrait layout for showcasing leadership and team composition.
careers4
Combined perks and job listings section with benefits grid and open positions list. Ideal for complete career pages.
careers30
Engineering and team blog article preview cards with images, excerpts, and authors. Showcases technical depth and knowledge sharing culture.