Alumni Network Showcase

Alumni Network

Where they are now

Our alumni have gone on to lead teams and build products at some of the most innovative companies in the world.

SP

Sarah Park

Software Engineer

Engineering Manager at Stripe

MT

Michael Torres

Product Designer

Head of Design at Linear

AR

Aisha Rahman

Data Analyst

VP of Analytics at Notion

DC

David Chen

Backend Engineer

Co-Founder & CTO at TechStartup

EL

Emma Larsson

Marketing Lead

CMO at Vercel

JL

Jordan Lee

DevOps Engineer

Staff SRE at Datadog

About this block

Alumni Network ShowcasePRO

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

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.

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

  • The entire header block (badge, heading, description) is conditionally rendered: the wrapping <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.
  • Each avatar renders 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.
  • Cards are keyed by array index, not by a stable id, so reordering or filtering items can confuse React's reconciliation.
  • The grid is fixed at one column on mobile, sm:grid-cols-2, and lg:grid-cols-3; there is no prop to change the column count.
  • The block is purely presentational: no callbacks, no internal state, and the alumni cards and current-role lines are static (not links or interactive).

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

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

careers14

Meet the Team Gallery

Team member photo grid with names and roles. Square portrait layout for showcasing leadership and team composition.