Hiring Manager Profiles

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

PRO

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.

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

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

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

careers2

Job Openings Grid

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

PRO

careers3

Department-Grouped Positions

Department-grouped job listings with minimal row layout. Jobs organized by team with location and type indicators.