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

Careers15: Day in the Life Timeline

A vertical single-column timeline in a centered narrow container: an optional badge, <strong>-aware heading, and lede sit above a stack of time-stamped rows, each pairing a circular icon node (connected by a vertical line to the next row) with a time label, title, and optional description.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Careers15, careers15Demo } from "@/components/beste/block/careers15";

export default function Page() {
  return <Careers15 {...careers15Demo} />;
}

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

tsx
import { Code, Coffee } from "lucide-react";
import { Careers15 } from "@/components/beste/block/careers15";

export default function Page() {
  return (
    <Careers15
      badge={{ label: "Life at Company", variant: "secondary" }}
      heading="A day in the <strong>life</strong>"
      description="Here's a look at a typical day for one of our engineers."
      items={[
        { time: "9:00 AM", title: "Morning kickoff", description: "Async standup in Slack, coffee, plan the day.", icon: Coffee },
        { time: "9:30 AM", title: "Deep work session", description: "Two uninterrupted hours of focused coding.", icon: Code },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringLede paragraph under the heading
itemsTimelineItem[][]Rows rendered top-to-bottom in the timeline
classNamestringExtra classes for the outer <section>
ts
type TimelineItem = {
  time: string;
  title: string;
  description?: string;
  icon?: LucideIcon;
};

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

careers36

Hiring Manager Profiles

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

PRO

careers33

HR Job Posting Detail

Formal HR job posting with responsibilities, qualifications, benefits, and sidebar summary. Corporate-style position detail page with apply CTA.

PRO

careers24

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

careers12

Career Growth Ladder

Career progression path with level indicators, role descriptions, and key skills. Shows growth framework from junior to principal level.