Open Roles

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

PRO

Careers40: Open Roles

A studio careers section with a header row (large heading, vertical divider, eyebrow badge, and an open-count label) above a bordered list of open roles, each row linking out to its href and showing the title, a department / location / type meta line separated by dot markers, a salary, and a hover-animated up-right arrow seal.

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

Base UI flavor

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

This installs the block to components/beste/block/careers40.tsx.

Quick start

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

tsx
import { Careers40, careers40Demo } from "@/components/beste/block/careers40";

export default function CareersPage() {
  return <Careers40 {...careers40Demo} />;
}

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

tsx
import { Careers40 } from "@/components/beste/block/careers40";

export default function CareersPage() {
  return (
    <Careers40
      label="Careers"
      heading="Build the studio behind the work"
      openingsLabel="7 open roles"
      roles={[
        {
          title: "Senior Brand Designer",
          department: "Design",
          location: "New York, NY",
          type: "Full-time",
          salary: "$120k – $150k",
          href: "/jobs/senior-brand-designer",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow badge text next to the heading
headingstringLarge section heading
openingsLabelstringUppercase open-count label on the right of the header
rolesRole[][]Rows rendered in the open-roles list
classNamestringExtra classes for the outer <section>
ts
type Role = {
  title: string;
  department: string;
  location: string;
  type: string;
  salary: string;
  href: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers48

Join The Studio

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

PRO

careers44

Roles By Department

Department-tabbed open roles list using shadcn Tabs.

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

careers7

Culture Stats with Positions

Team culture stats bar followed by detailed job position cards. Combines social proof with open roles listing.

PRO

careers46

Role Spotlight

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

PRO

careers4

Perks & Open Positions

Combined perks and job listings section with benefits grid and open positions list. Ideal for complete career pages.