Perks & Open Positions

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

PRO

Careers4: Perks & Open Positions

A complete career-page section that stacks a centered heading block, a two-column grid of perk cards (each with an optional icon, title, and description), and a bordered, divided list of open positions where every row shows the job title with Briefcase/MapPin/Clock metadata and an "Apply" button linking to the role.

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

Base UI flavor

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

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

Quick start

The installed file exports careers4Demo alongside the block: the exact props behind the preview above. Spread it to get a working perks-and-positions section in one line.

tsx
import { Careers4, careers4Demo } from "@/components/beste/block/careers4";

export default function CareersPage() {
  return <Careers4 {...careers4Demo} />;
}

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

tsx
import { HeartPulse, MapPin, Wifi } from "lucide-react";
import { Careers4 } from "@/components/beste/block/careers4";

export default function CareersPage() {
  return (
    <Careers4
      badge={{ label: "Careers", variant: "secondary" }}
      heading="Why you'll <strong>love working</strong> here"
      description="Explore our perks and open roles below."
      perks={[
        { icon: Wifi, title: "Remote Work", description: "Work from anywhere in the world." },
        { icon: HeartPulse, title: "Health Insurance", description: "Medical, dental, and vision from day one." },
      ]}
      items={[
        { title: "Senior Frontend Engineer", department: "Engineering", location: "Remote", type: "Full-time", href: "/jobs/frontend" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Section eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSupporting paragraph under the heading
perksPerkItem[][]Cards rendered in the benefits grid
itemsJobItem[][]Rows rendered in the open-positions list
classNamestringExtra classes for the outer <section>
ts
type PerkItem = {
  icon?: LucideIcon;
  title: string;
  description?: string;
};

type JobItem = {
  title: string;
  department?: string;
  location?: string;
  type?: string;
  href?: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers9

Employee Benefits Grid

Benefits and perks showcase with icon cards in a responsive grid. Highlights company offerings like health, remote work, and growth opportunities.

PRO

careers2

Job Openings Grid

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

PRO

careers49

Benefits Breakdown

Categorized studio benefits with checklists per category.

PRO

careers5

Featured Role with Positions

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

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

careers38

Work Perks Bento Grid

Bento-style grid of work perks with featured image card and icon cards. Mixed layout showcasing PTO, wellness, equipment, and team events.