Alumni Network Showcase

Former employee showcase with career progression from company role to current position. Demonstrates the company as a career launchpad.

PRO

Careers32: Alumni Network Showcase

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSupporting paragraph below the heading
itemsAlumniItem[][]Cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type AlumniItem = {
  name: string;
  avatar?: { src: string; alt: string };
  previousRole: string;
  currentRole: string;
  currentCompany: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers22

Employee Spotlight Story

Featured employee profile with portrait photo, personal quote, and career milestone timeline. Showcases real growth stories.

PRO

careers29

Team Events Gallery

Photo gallery of company events, offsites, and team activities in masonry layout. Visual showcase of team culture and community.

PRO

careers5

Featured Role with Positions

Highlighted featured position card with a compact list of additional openings below. Great for showcasing priority roles.

PRO

careers50

Careers Gallery Header

Centered careers intro with eyebrow, highlighted heading and supporting copy above a three-image gallery — one wide frame beside two portraits.

PRO

careers12

Career Growth Ladder

Career progression path with level indicators, role descriptions, and key skills. Shows growth framework from junior to principal level.

PRO

careers46

Role Spotlight

A full featured-role posting with responsibilities, requirements and a sticky apply card.