Roles By Department

Department-tabbed open roles list using shadcn Tabs.

PRO

Careers44: Roles By Department

A centered careers section that groups open roles into department tabs: a header with an optional badge eyebrow, heading, and description sits above a shadcn Tabs bar whose first tab flattens every department's roles into one "All" list and whose remaining tabs each show a single department, with every role rendered as a bordered row showing title, location • type, and an arrow apply 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/careers44?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/careers44.tsx, plus the tabs shadcn/ui primitive it uses for the department filter bar.

Quick start

The installed file exports careers44Demo alongside the block: the exact props behind the preview above. Spread it to get a working department-tabbed roles list in one line.

tsx
import { Careers44, careers44Demo } from "@/components/beste/block/careers44";

export default function CareersPage() {
  return <Careers44 {...careers44Demo} />;
}

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

tsx
import { Careers44 } from "@/components/beste/block/careers44";

export default function CareersPage() {
  return (
    <Careers44
      eyebrow="Open Roles"
      heading="Build the studio with us"
      description="Find your department below."
      allLabel="All"
      departments={[
        {
          tabLabel: "Design",
          roles: [
            {
              title: "Senior Brand Designer",
              location: "Brooklyn, NY",
              type: "Full-time",
              href: "/jobs/senior-brand-designer",
            },
          ],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 eyebrow text above the heading; the badge is omitted when unset
headingstringSection heading; omitted when unset
descriptionstringSupporting paragraph below the heading; omitted when unset
allLabelstringLabel and value for the first tab that aggregates every department's roles
departmentsDepartment[][]Department tabs, each with its own scoped role list
classNamestringExtra classes for the outer <section>
ts
type Role = {
  title: string;
  location: string;
  type: string;
  href: string;
};

type Department = {
  tabLabel: string;
  roles: Role[];
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers6

Tab-Filtered Job Board

Tabbed job board with department filters using shadcn Tabs component. Browse positions by team with location and type details.

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

careers18

Department Overview Grid

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

PRO

careers40

Open Roles

A studio jobs list with role meta, salary and apply arrows.

PRO

careers48

Join The Studio

Sticky employer-value intro beside a scrollable open-roles list.

PRO

careers2

Job Openings Grid

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