Candidate Experience Guide

Two-column guide with preparation tips and company commitments to candidates. Sets expectations for the hiring process with contact info.

PRO

Careers39: Candidate Experience Guide

A centered header (optional badge, <strong>-aware heading, and description) above a two-column card grid where the left card lists preparation tips each prefixed by a CheckCircle icon and the right card lists company commitments each prefixed by a Shield icon, closed by an optional "Questions?" line linking a mailto: contact email.

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

Base UI flavor

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

This installs the block to components/beste/block/careers39.tsx, plus the badge shadcn/ui primitive it uses for the section eyebrow.

Quick start

The installed file exports careers39Demo alongside the block: the exact props behind the preview above. Spread it to get a working candidate-experience section in one line.

tsx
import { Careers39, careers39Demo } from "@/components/beste/block/careers39";

export default function CareersPage() {
  return <Careers39 {...careers39Demo} />;
}

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

tsx
import { Careers39 } from "@/components/beste/block/careers39";

export default function CareersPage() {
  return (
    <Careers39
      badge={{ label: "For Candidates", variant: "secondary" }}
      heading="What to <strong>expect</strong>"
      description="How to prepare and what we promise in return."
      prepareTitle="What to Prepare"
      prepareItems={[
        { text: "Review the job description and map your experience to it" },
        { text: "Bring specific examples that demonstrate impact" },
      ]}
      commitTitle="Our Commitment to You"
      commitItems={[
        { text: "You'll hear back within 5 business days of every stage" },
        { text: "You'll receive detailed feedback regardless of outcome" },
      ]}
      contactEmail="recruiting@company.com"
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Section eyebrow badge, centered above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSubheading paragraph under the heading
prepareTitlestringTitle of the left ("prepare") card
prepareItemsCommitmentItem[][]Rows in the left card, each with a CheckCircle icon
commitTitlestringTitle of the right ("commitment") card
commitItemsCommitmentItem[][]Rows in the right card, each with a Shield icon
contactEmailstringAddress for the closing mailto: link
classNamestringExtra classes for the outer <section>
ts
type CommitmentItem = {
  text: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers36

Hiring Manager Profiles

Team lead profiles with photos, bios, and department badges. Introduces future managers to candidates with detailed backgrounds.

PRO

careers10

Hiring Process Timeline

Step-by-step hiring process timeline with numbered stages. Shows candidates the interview journey from application to onboarding.

PRO

careers18

Department Overview Grid

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

PRO

careers46

Role Spotlight

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

PRO

careers37

Job Alerts Signup

Email subscription form for job alerts with trust indicators. Captures candidate interest for future openings with clean card layout.

PRO

careers19

Internship Program

Internship program section with highlights, mentorship details, program summary card, and apply CTA. For recruiting early-career talent.