Learning & Development

Learning & Development

Invest in your growth

We set aside real time and budget for learning because great people never stop growing.

Conference Budget

Attend industry conferences, workshops, and meetups. We cover tickets, travel, and accommodation.

$3,000 per year

Course & Certification

Enroll in online courses, bootcamps, or certification programs. Learn at your own pace with full reimbursement.

Unlimited access

Mentorship Program

Get matched with a senior mentor outside your team for career guidance, technical growth, and honest feedback.

1:1 bi-weekly sessions

Internal Tech Talks

Weekly knowledge-sharing sessions where anyone can present. Past topics range from system design to personal finance.

Every Friday

About this block

Learning & DevelopmentPRO

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

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.

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/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

  • The entire header block only renders when at least one of badge, heading, or description is provided; with all three absent the component is just the grid.
  • heading is injected via dangerouslySetInnerHTML, so inline <strong> markup is honored and styled with text-primary; pass plain text if you do not need it.
  • The badge variant falls back to "default" when omitted, matching the shadcn Badge default rather than the demo's "secondary".
  • Each card is keyed by array index, so reordering or filtering items in place can reuse the wrong DOM node; supply stable data ordering.
  • Within a card, icon, description, and highlight are each conditionally rendered; the icon circle still renders as an empty tinted disc when icon is omitted, and the highlight line adds its border-t pt-4 divider only when present.
  • The grid is fixed at one column on mobile and two columns from the sm breakpoint up (sm:grid-cols-2); there is no prop to change the column count.
  • The component is purely presentational with no callbacks, state, or interactive elements, so nothing needs wiring after install.

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

careers18

Department Overview Grid

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

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

careers23

Employee Referral Program

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

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

careers16

Employee Testimonials

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