// ─── EXPERIENCE ───────────────────────────────────────────────────────────────
// Shown in reverse-chronological order (most recent first).
// To add a new role: copy the template at the bottom and paste it at the top.
//
// Fields:
//   date    — display string, e.g. "01 / 2025 — NOW" or "09 / 2023 — 04 / 2024"
//   role    — job title
//   co      — company name · city
//   bullets — array of strings; each becomes one line in the log
// ─────────────────────────────────────────────────────────────────────────────
const EXPERIENCE = [

// ── most recent role ────────────────────────────────────────────────────────
{
  date: "09 / 2024 — NOW",
  role: "ECE 260 Signal Processing Tutor",
  co:   "WECS · University of Victoria",
  bullets: [
    "Host monthly study sessions for ECE 260 (Continuous Signals & Systems), breaking down core concepts for students.",
    "Run exam review sessions covering key topics and problem-solving strategies to help students prepare.",
    "Serve as a member of the WECS tutor team, providing ongoing academic support for ECE students.",
  ],
},

// ── ─────────────────────────────────────────────────────────────────────────
{
  date: "01 / 2025 — NOW",
  role: "Front Desk Receptionist",
  co:   "Forge Training · Victoria, BC",
  bullets: [
    "Manage front desk operations including guest check-in, scheduling, and maintaining a welcoming environment.",
    "First point of contact for visitors and staff, handling inquiries with professionalism and efficiency.",
  ],
},

// ── previous role ───────────────────────────────────────────────────────────
{
  date: "09 / 2023 — 04 / 2024",
  role: "Hardware Test Engineering Student",
  co:   "Arlo Technologies · Richmond, BC",
  bullets: [
    "Designed and executed hardware test scripts in Python using TTL logic to simulate real-world user scenarios across three concurrent IoT product development projects.",
    "Built a data processing pipeline that eliminated manual handling of multi-day continuous test runs, improving result accuracy and cutting turnaround time significantly.",
    "Standardized test plans for reproducibility and cross-team usability across concurrent product development cycles.",
    "Performed root cause analysis on hardware and software defects, delivering diagnostic findings directly to cross-functional engineering teams.",
  ],
},

// ── add more roles above this line ─────────────────────────────────────────
// Template:
// {
//   date: "MM / YYYY — MM / YYYY",
//   role: "Job Title",
//   co:   "Company Name · City, Province",
//   bullets: [
//     "What you built or did.",
//     "Another accomplishment.",
//   ],
// },
];
Object.assign(window, { EXPERIENCE });