Filterable Open Roles ListFREE

A light editorial careers section with a monospace eyebrow over a hairline rule, a two-column heading, and a sticky culture photo with a gradient caption beside team filter pills and hairline job rows showing location, contract type, and a hover arrow.

Careers51: Filterable Open Roles List

Careers section with a monospace eyebrow over a hairline rule and a two-column heading, then a sticky culture photo beside a filterable role list: team pills carrying live counts above hairline rows that pair the job title and team with location, contract type, and a hover arrow.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/careers51"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/careers51"

This installs the block to components/beste/block/careers51.tsx plus the badge23 and button21 components it uses for the eyebrow and the closing action.

Quick start

The installed file exports careers51Demo alongside the block: the exact props behind the preview above. Spread it to get a working careers list in one line.

tsx
import { Careers51, careers51Demo } from "@/components/beste/block/careers51";

export default function CareersPage() {
  return <Careers51 {...careers51Demo} />;
}

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

tsx
import { Careers51 } from "@/components/beste/block/careers51";

export default function CareersPage() {
  return (
    <Careers51
      badge={{ label: "Careers" }}
      heading="Open roles"
      description="Small teams, long horizons, and work you can point at a year from now."
      allLabel="All roles"
      media={{
        image: { src: "/images/studio.jpg", alt: "The team around a laptop" },
        title: "42 people, 9 countries",
        description: "Four-day summer weeks and a real budget for craft.",
      }}
      items={[
        {
          title: "Senior Product Designer",
          team: "Design",
          location: "Remote, Europe",
          type: "Full-time",
          href: "/careers/senior-product-designer",
        },
        {
          title: "Backend Engineer",
          team: "Engineering",
          location: "Berlin, hybrid",
          type: "Full-time",
          href: "/careers/backend-engineer",
        },
      ]}
      footnote={{
        label: "Nothing here fits?",
        button: { label: "Send an open application", href: "/careers/open" },
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Monospace eyebrow above the hairline rule, rendered via Badge23
headingstringSection heading in the left column
descriptionstringSupporting paragraph, right-aligned from md up
mediaMediaSticky photo column on the left, with an optional caption over a gradient
allLabelstringLabel of the first filter pill, the one that clears the team filter
itemsRole[][]Job rows, and the source of the team filter list
footnote{ label: string; button: ActionLink }Closing line and outline button under the list
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };

type Media = {
  image: { src: string; alt: string };
  title?: string;
  description?: string;
};

type Role = {
  title: string;
  team: string;
  location: string;
  type: string;
  href: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers40

Open Roles

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

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

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

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

careers46

Role Spotlight

A full featured-role posting with responsibilities, requirements and a sticky apply card.