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

Careers1: Job Listings List

A centered careers section that renders an optional badge, heading, and description above a bordered, row-divided list of job openings, each showing a title, inline department/location/type metadata with icons, an optional description, and an "Apply" button linking to the role's URL.

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

Base UI flavor

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

This installs the block to components/beste/block/careers1.tsx, plus the badge and button shadcn/ui primitives it uses for the section eyebrow and the per-row apply button.

Quick start

The installed file exports careers1Demo alongside the block: the exact props behind the preview above. Spread it to get a working job listings section in one line.

tsx
import { Careers1, careers1Demo } from "@/components/beste/block/careers1";

export default function CareersPage() {
  return <Careers1 {...careers1Demo} />;
}

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

tsx
import { Briefcase } from "lucide-react";
import { Careers1 } from "@/components/beste/block/careers1";

export default function CareersPage() {
  return (
    <Careers1
      badge={{ label: "We're Hiring", variant: "secondary" }}
      heading="Join our <strong>growing team</strong>"
      description="Explore our open positions and find your next opportunity."
      items={[
        {
          title: "Senior Frontend Engineer",
          department: "Engineering",
          location: "Remote",
          type: "Full-time",
          description: "Build and maintain our React-based web applications.",
          href: "https://beste.co",
          icon: Briefcase,
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional section eyebrow badge
headingstringSection heading, supports inline <strong>
descriptionstringSupporting paragraph under the heading
itemsJobItem[][]Job rows rendered in the bordered list
classNamestringExtra classes for the outer <section>
ts
type JobItem = {
  title: string;
  department?: string;
  location?: string;
  type?: string;
  description?: string;
  href?: string;
  icon?: LucideIcon;
};

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

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.

PRO

careers18

Department Overview Grid

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

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

careers44

Roles By Department

Department-tabbed open roles list using shadcn Tabs.