Former employee showcase with career progression from company role to current position. Demonstrates the company as a career launchpad.
A centered section header (optional badge, <strong>-aware heading, and description) above a responsive one-to-three-column grid of alumni cards, each pairing an avatar (image or initials fallback) and previous role with an arrow-prefixed line reading currentRole at currentCompany.
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/careers32?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/careers32?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/careers32.tsx, plus the badge and avatar shadcn/ui primitives it uses for the eyebrow badge and the per-alumni avatar with its initials fallback.
The installed file exports careers32Demo alongside the block: the exact props behind the preview above. Spread it to get a working alumni grid in one line.
import { Careers32, careers32Demo } from "@/components/beste/block/careers32";
export default function AlumniPage() {
return <Careers32 {...careers32Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Careers32 } from "@/components/beste/block/careers32";
export default function AlumniPage() {
return (
<Careers32
badge={{ label: "Alumni Network", variant: "secondary" }}
heading="Where they are <strong>now</strong>"
description="Our alumni lead teams at some of the most innovative companies in the world."
items={[
{
name: "Sarah Park",
avatar: { src: "/alumni/sarah.jpg", alt: "Sarah Park" },
previousRole: "Software Engineer",
currentRole: "Engineering Manager",
currentCompany: "Stripe",
},
]}
/>
);
}| 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 below the heading |
items | AlumniItem[] | [] | Cards rendered in the grid |
className | string | – | Extra classes for the outer <section> |
type AlumniItem = {
name: string;
avatar?: { src: string; alt: string };
previousRole: string;
currentRole: string;
currentCompany: string;
};<div> only appears when at least one of badge, heading, or description is truthy.heading is injected via dangerouslySetInnerHTML, so inline <strong> is honored and styled text-primary; any markup you pass is rendered as raw HTML.AvatarImage only when item.avatar is present; otherwise the AvatarFallback shows initials computed by splitting name on spaces and taking the first character of each part, so a single-word name yields one initial.index, not by a stable id, so reordering or filtering items can confuse React's reconciliation.sm:grid-cols-2, and lg:grid-cols-3; there is no prop to change the column count.careers22
Featured employee profile with portrait photo, personal quote, and career milestone timeline. Showcases real growth stories.
careers29
Photo gallery of company events, offsites, and team activities in masonry layout. Visual showcase of team culture and community.
careers5
Highlighted featured position card with a compact list of additional openings below. Great for showcasing priority roles.
careers50
Centered careers intro with eyebrow, highlighted heading and supporting copy above a three-image gallery — one wide frame beside two portraits.
careers12
Career progression path with level indicators, role descriptions, and key skills. Shows growth framework from junior to principal level.
careers46
A full featured-role posting with responsibilities, requirements and a sticky apply card.