Department Overview Grid

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

PRO

Careers18: Department Overview Grid

A centered header block (optional badge, <strong>-aware heading, and description) above a two-column grid of department cards, each rendering a title, description, team lead, headcount, an open-roles badge, and a "View open roles" link.

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

Base UI flavor

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

This installs the block to components/beste/block/careers18.tsx, plus the badge shadcn/ui primitive it uses for the eyebrow badge and the per-card open-roles count.

Quick start

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

tsx
import { Careers18, careers18Demo } from "@/components/beste/block/careers18";

export default function Page() {
  return <Careers18 {...careers18Demo} />;
}

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

tsx
import { Careers18 } from "@/components/beste/block/careers18";

export default function Page() {
  return (
    <Careers18
      badge={{ label: "Our Teams", variant: "secondary" }}
      heading="Explore our <strong>departments</strong>"
      description="Find where your skills align and discover your next career move."
      items={[
        {
          title: "Engineering",
          description: "Build and scale our core platform, APIs, and infrastructure.",
          lead: "James Kim",
          teamSize: "45 people",
          openRoles: 8,
          href: "/careers/engineering",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringCentered heading, supports inline <strong>
descriptionstringSub-heading paragraph under the heading
itemsDepartmentItem[][]Department cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type DepartmentItem = {
  title: string;
  description?: string;
  lead?: string;
  teamSize?: string;
  openRoles?: number;
  href?: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers2

Job Openings Grid

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

PRO

careers36

Hiring Manager Profiles

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

PRO

careers14

Meet the Team Gallery

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

PRO

careers1

Job Listings List

Job listings section with role cards showing department, location, and employment type. Clean list layout with hover effects and apply buttons.

PRO

careers3

Department-Grouped Positions

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

PRO

careers5

Featured Role with Positions

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