Diversity and inclusion section with representation stats and initiative cards. Showcases company commitment to equity and belonging.
A centered diversity-and-inclusion section that stacks an optional badge, a heading with inline <strong> accent, and a lead paragraph over a responsive grid of representation stats and a three-column grid of initiative cards, each card showing a title and optional 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/careers20?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/careers20?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/careers20.tsx, plus the badge shadcn/ui primitive it uses for the section eyebrow badge.
The installed file exports careers20Demo alongside the block: the exact props behind the preview above. Spread it to get a working diversity section in one line.
import { Careers20, careers20Demo } from "@/components/beste/block/careers20";
export default function Page() {
return <Careers20 {...careers20Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Careers20 } from "@/components/beste/block/careers20";
export default function Page() {
return (
<Careers20
badge={{ label: "Diversity & Inclusion", variant: "secondary" }}
heading="Building a team that <strong>reflects the world</strong>"
description="We believe diverse teams build better products."
stats={[
{ value: "48%", label: "Women in leadership" },
{ value: "32", label: "Nationalities represented" },
]}
initiatives={[
{ title: "Equitable Hiring", description: "Structured interviews and blind resume reviews." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Section eyebrow badge above the heading |
heading | string | – | Section heading, supports inline <strong> |
description | string | – | Lead paragraph under the heading |
stats | StatItem[] | [] | Representation figures rendered in a grid |
initiatives | InitiativeItem[] | [] | Initiative cards rendered below the stats |
className | string | – | Extra classes for the outer <section> |
type StatItem = {
value: string;
label: string;
};
type InitiativeItem = {
title: string;
description?: string;
};badge || heading || description guard, so if all three are omitted the top region collapses and the section opens straight into the stats grid.heading is rendered via dangerouslySetInnerHTML, and only inline <strong> is styled: the [&>strong]:text-primary selector recolors it to the primary tone, while any other markup passes through unstyled.badge.variant falls back to "default" via badge.variant ?? "default" when the badge is present but no variant is given.stats.length > 0; it is fixed at grid-cols-2 on mobile and md:grid-cols-4, so any number of stats wraps into those two or four columns regardless of count.initiatives.length > 0 and uses sm:grid-cols-3, so it is optimized for exactly three cards; more or fewer still flow into the three-column track.description paragraph only when the field is present, leaving a title-only card when it is omitted.careers26
Recruitment statistics dashboard with key metrics, trends, and detailed hiring process stats. Transparent data-driven hiring showcase.
careers5
Highlighted featured position card with a compact list of additional openings below. Great for showcasing priority roles.
careers16
Employee testimonial cards with quotes, avatars, and roles. Social proof grid showcasing team member experiences and company culture.
careers11
Company values grid with icon cards and employee testimonial quote. Showcases team culture and work philosophy.
careers7
Team culture stats bar followed by detailed job position cards. Combines social proof with open roles listing.
careers19
Internship program section with highlights, mentorship details, program summary card, and apply CTA. For recruiting early-career talent.