Onboarding Journey Preview

Your First 90 Days

Your first 90 days

We've designed a structured onboarding program so you can hit the ground running and feel at home from day one.

Week 1–2

Learn & Explore

  • Meet your team and onboarding buddy
  • Set up your dev environment and tools
  • Complete company and product orientation
  • Ship your first small pull request
Month 1–2

Build & Contribute

  • Own your first feature end-to-end
  • Join sprint planning and retros
  • Pair with senior engineers on complex tasks
  • Present at your first team demo
Month 2–3

Own & Grow

  • Lead a project or initiative independently
  • Participate in architecture discussions
  • Set goals with your manager for the next quarter
  • Give your first onboarding feedback
About this block

Onboarding Journey PreviewPRO

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

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.

Upgrade Now

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

  • The entire header block is conditionally rendered: the centered wrapper only appears when at least one of badge, heading, or description is truthy.
  • heading is injected via dangerouslySetInnerHTML, and any inline <strong> is styled to text-primary with font-semibold, so pass trusted markup only.
  • badge.variant falls back to "default" when omitted, while each card's own phase badge is always hardcoded to variant="outline" and is not configurable.
  • The grid is a fixed sm:grid-cols-3 layout, so more than three items wrap onto additional rows rather than scrolling, and fewer than three leave the remaining columns empty.
  • Per card, description renders only when present, and the activity list maps over item.activities ?? [], so a card with no activities simply shows an empty list under its title.
  • The component is purely presentational: it exposes no click or selection callbacks and holds no internal useState, so there is nothing to wire up beyond the props.

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

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.