Hiring Manager Profiles

Meet Your Leaders

Meet your future leaders

Get to know the hiring managers and team leads you'd be working with. These are the people who'll support your growth and champion your work.

James Kim

James Kim

VP of Engineering

Engineering

James has 15 years of experience building high-performance engineering teams. Before joining, he led platform engineering at a Series D startup. He believes in servant leadership and creating environments where engineers can do their best work.

Sarah Martinez

Sarah Martinez

Director of Product

Product

Sarah transitioned from engineering to product and brings deep technical empathy to every decision. She's shipped products used by millions and loves the messy middle of zero-to-one.

Emily Chen

Emily Chen

Head of Design

Design

Emily brings a decade of design leadership from both agency and product worlds. She's passionate about design systems, accessibility, and mentoring the next generation of designers.

David Park

David Park

Head of Data

Analytics

David built our data team from the ground up. With a PhD in statistics and experience at two public companies, he brings rigor and curiosity to everything the team tackles.

About this block

Hiring Manager ProfilesPRO

Team lead profiles with photos, bios, and department badges. Introduces future managers to candidates with detailed backgrounds.

Careers36: Hiring Manager Profiles

A centered header (optional badge, <strong>-aware heading, and description) above a two-column card grid of team leaders, where each card renders a 4:3 cover photo that scales on hover plus the leader's name, role, an outline department badge, and bio.

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/careers36?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/careers36.tsx, plus the badge shadcn/ui primitive it uses for the header eyebrow badge and the per-card department badge.

Quick start

The installed file exports careers36Demo alongside the block: the exact props behind the preview above. Spread it to get a working leader grid in one line.

tsx
import { Careers36, careers36Demo } from "@/components/beste/block/careers36";

export default function Page() {
  return <Careers36 {...careers36Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Careers36 } from "@/components/beste/block/careers36";

export default function Page() {
  return (
    <Careers36
      badge={{ label: "Meet Your Leaders", variant: "secondary" }}
      heading="Meet your <strong>future leaders</strong>"
      description="Get to know the hiring managers and team leads you'd be working with."
      items={[
        {
          name: "James Kim",
          role: "VP of Engineering",
          department: "Engineering",
          bio: "James has 15 years of experience building high-performance engineering teams.",
          image: { src: "/leaders/james.jpg", alt: "James Kim" },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Header eyebrow badge above the heading
headingstringHeader heading, supports inline <strong>
descriptionstringSupporting paragraph below the heading
itemsLeaderItem[][]Leader cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type LeaderItem = {
  name: string;
  role?: string;
  department?: string;
  bio?: string;
  image?: { src: string; alt: string };
};

Behavior notes

  • The entire header block (badge, heading, description) is only rendered when at least one of those three props is truthy, so passing just items produces a bare grid with no header.
  • heading is injected via dangerouslySetInnerHTML, and inline <strong> is styled text-primary font-semibold through a [&>strong] selector, so only direct-child <strong> picks up the accent color.
  • Each LeaderItem field is individually optional and conditionally rendered: the image wrapper, role, department badge, and bio each render only when their value is present, while name is always shown.
  • Cards are keyed by array index, so reordering or filtering items remounts rather than reconciles existing cards.
  • The grid is fixed at one column on mobile and two columns from md up (md:grid-cols-2); there is no prop to change the column count.
  • The cover image fills a fixed aspect-[4/3] box with object-cover and scales to 1.05 on card hover via the group/careers36 group, a purely decorative effect with no interaction handler.
  • The block is presentational only: there are no callbacks, click handlers, or internal state, so cards are not clickable and nothing is wired to navigation.

More Careers blocks

View all Careers
PRO

careers18

Department Overview Grid

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

PRO

careers14

Meet the Team Gallery

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

PRO

careers10

Hiring Process Timeline

Step-by-step hiring process timeline with numbered stages. Shows candidates the interview journey from application to onboarding.

PRO

careers2

Job Openings Grid

Job openings grid with department badges, location tags, and apply buttons. Card-based layout for career pages.

PRO

careers39

Candidate Experience Guide

Two-column guide with preparation tips and company commitments to candidates. Sets expectations for the hiring process with contact info.

PRO

careers22

Employee Spotlight Story

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