Role Spotlight

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

PRO

Careers46: Role Spotlight

A single-role job posting laid out in a two-column grid: the left column stacks an eyebrow badge, the role title, a row of chip pills (department, location, type, salary), a lead paragraph, and two check-listed columns for responsibilities and requirements, while the right column holds a sticky card with a facts definition list, a full-width apply button, and a closing note.

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

Base UI flavor

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

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

Quick start

The installed file exports careers46Demo alongside the block: the exact props behind the preview above. Spread it to get a working role posting in one line.

tsx
import { Careers46, careers46Demo } from "@/components/beste/block/careers46";

export default function CareersPage() {
  return <Careers46 {...careers46Demo} />;
}

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

tsx
import { Careers46 } from "@/components/beste/block/careers46";

export default function CareersPage() {
  return (
    <Careers46
      label="Now hiring"
      role={{
        title: "Senior Brand Designer",
        department: "Creative Studio",
        location: "Brooklyn, NY / Remote",
        type: "Full-time",
        salary: "$135k to $165k",
      }}
      description="Own the visual voice of three to four client engagements at once, from first sketch to a production-ready toolkit."
      responsibilities={["Lead end-to-end identity work.", "Translate strategy decks into design directions."]}
      requirements={["6+ years of brand or identity design.", "Fluency in Figma and the full Adobe suite."]}
      facts={[
        { label: "Team", value: "Creative Studio" },
        { label: "Reports to", value: "Creative Director" },
      ]}
      applyHref="https://beste.co"
      applyLabel="Apply now"
      note="We review every application within five business days."
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow badge text above the title; the badge only renders when set
roleRoleTitle plus the four chip values (department, location, type, salary)
descriptionstringLead paragraph under the chip row
responsibilitiesstring[][]Check-listed items under the "What you'll do" column
requirementsstring[][]Check-listed items under the "What you bring" column
factsFact[][]Label/value rows in the sticky card's definition list
applyHrefstringDestination for the apply button
applyLabelstringApply button text
notestringFine-print paragraph below the apply button
classNamestringExtra classes for the outer <section>
ts
type Role = {
  title: string;
  department: string;
  location: string;
  type: string;
  salary: string;
};

type Fact = {
  label: string;
  value: string;
};

Behavior notes

More Careers blocks

View all Careers
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

careers22

Employee Spotlight Story

Featured employee profile with portrait photo, personal quote, and career milestone timeline. Showcases real growth stories.

PRO

careers48

Join The Studio

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

PRO

careers8

Job Detail Page

Single job posting detail with responsibilities, requirements, nice-to-haves, and apply CTA. Full position description layout.

PRO

careers18

Department Overview Grid

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