Professional development program cards with conference budget, courses, mentorship, and tech talks. Highlights company investment in employee growth.
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.
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/careers28?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Optional eyebrow badge above the heading |
heading | string | – | Section heading, supports inline <strong> |
description | string | – | Supporting paragraph under the heading |
items | ProgramItem[] | [] | Cards rendered in the grid |
className | string | – | Extra classes for the outer <section> |
type ProgramItem = {
icon?: LucideIcon;
title: string;
description?: string;
highlight?: string;
};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.variant falls back to "default" when omitted, matching the shadcn Badge default rather than the demo's "secondary".index, so reordering or filtering items in place can reuse the wrong DOM node; supply stable data ordering.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.sm breakpoint up (sm:grid-cols-2); there is no prop to change the column count.careers19
Internship program section with highlights, mentorship details, program summary card, and apply CTA. For recruiting early-career talent.
careers30
Engineering and team blog article preview cards with images, excerpts, and authors. Showcases technical depth and knowledge sharing culture.
careers18
Department cards with team lead, headcount, open roles badge, and links. Helps candidates explore teams before applying.
careers23
Referral program section with step-by-step process, bonus highlight card, and submit CTA. Encourages employee referrals.
careers16
Employee testimonial cards with quotes, avatars, and roles. Social proof grid showcasing team member experiences and company culture.
careers9
Benefits and perks showcase with icon cards in a responsive grid. Highlights company offerings like health, remote work, and growth opportunities.