Onboarding Journey Preview

First 90 days onboarding timeline with phase cards and activity checklists. Shows new hires what to expect from orientation to ownership.

PRO

Careers24: Onboarding Journey Preview

A centered header (optional badge, <strong>-aware heading, and description) above a three-column grid of phase cards, each card leading with an outline phase badge, a title, an optional description, and a checklist of activities marked by primary-colored check icons.

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

Base UI flavor

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

This installs the block to components/beste/block/careers24.tsx, plus the badge shadcn/ui primitive it uses for the section eyebrow, the per-card phase labels, and the header badge.

Quick start

The installed file exports careers24Demo alongside the block: the exact props behind the preview above. Spread it to get a working onboarding timeline in one line.

tsx
import { Careers24, careers24Demo } from "@/components/beste/block/careers24";

export default function OnboardingPage() {
  return <Careers24 {...careers24Demo} />;
}

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

tsx
import { Careers24 } from "@/components/beste/block/careers24";

export default function OnboardingPage() {
  return (
    <Careers24
      badge={{ label: "Your First 90 Days", variant: "secondary" }}
      heading="Your first <strong>90 days</strong>"
      description="A structured program so you feel at home from day one."
      items={[
        {
          phase: "Week 1–2",
          title: "Learn & Explore",
          activities: [
            "Meet your team and onboarding buddy",
            "Set up your dev environment and tools",
          ],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Header eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringMuted paragraph rendered below the heading
itemsPhaseItem[][]Phase cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type PhaseItem = {
  phase: string;
  title: string;
  description?: string;
  activities?: string[];
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers10

Hiring Process Timeline

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

PRO

careers22

Employee Spotlight Story

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

PRO

careers46

Role Spotlight

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

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

careers15

Day in the Life Timeline

A typical workday timeline with time stamps, activity icons, and descriptions. Shows candidates what daily life looks like at the company.

PRO

careers37

Job Alerts Signup

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