Learning & Development

Professional development program cards with conference budget, courses, mentorship, and tech talks. Highlights company investment in employee growth.

PRO

Careers28: Learning & Development

A centered, optional header (badge, <strong>-aware heading, and description) above a responsive two-column grid of program cards, each rendering an optional icon in a tinted circle, a title, an optional description, and an optional top-bordered highlight line.

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

Base UI flavor

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

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

Quick start

The installed file exports careers28Demo alongside the block: the exact props behind the preview above. Spread it to get a working development-perks grid in one line.

tsx
import { Careers28, careers28Demo } from "@/components/beste/block/careers28";

export default function Page() {
  return <Careers28 {...careers28Demo} />;
}

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

tsx
import { BookOpen, GraduationCap } from "lucide-react";
import { Careers28 } from "@/components/beste/block/careers28";

export default function Page() {
  return (
    <Careers28
      badge={{ label: "Learning & Development", variant: "secondary" }}
      heading="Invest in your <strong>growth</strong>"
      description="We set aside real time and budget for learning."
      items={[
        {
          icon: GraduationCap,
          title: "Conference Budget",
          description: "We cover tickets, travel, and accommodation.",
          highlight: "$3,000 per year",
        },
        {
          icon: BookOpen,
          title: "Course & Certification",
          description: "Enroll in online courses with full reimbursement.",
          highlight: "Unlimited access",
        },
      ]}
    />
  );
}

Props

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

Behavior notes

More Careers blocks

View all Careers
PRO

careers19

Internship Program

Internship program section with highlights, mentorship details, program summary card, and apply CTA. For recruiting early-career talent.

PRO

careers30

Team Blog Highlights

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

PRO

careers18

Department Overview Grid

Department cards with team lead, headcount, open roles badge, and links. Helps candidates explore teams before applying.

PRO

careers23

Employee Referral Program

Referral program section with step-by-step process, bonus highlight card, and submit CTA. Encourages employee referrals.

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.