> ## Documentation Index
> Fetch the complete documentation index at: https://mariacristoforo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Changelog

export const entries = [
  {
    version: "v3.0.0", date: "Winter 2025",
    title: "Moved to SF, joined Ocular AI (YCW24) as a design engineer",
    desc: "Take features from initial concept to full implementation on Ocular's data processing platforms. Work on a small 5-person team, reporting directly to the founders.",
    link: null
  },
  {
    version: "v2.5.0", date: "Fall 2024",
    title: "Fullstack SWE at NoxuData",
    desc: "Reported directly to the two founders with technical contributions and product ideas. Learned API design fundamentals, full-stack implementation process, shipped clean code on a large existing codebase. ",
    link: null
  },
  {
    version: "v2.0.0", date: "Spring 2024",
    title: "Graduated Dartmouth, CS/Human-Centered Design",
    desc: "Gained an appreciation for interdisciplinary thinking and applying insights from psychology and human-centered design to technical problems. Wrote an honors thesis about accessible development practices.",
    link: null
  },
  {
    version: "v1.4.0", date: "Summer 2023",
    title: "Support Engineering internship at Atlassian",
    desc: "Talked directly with customers, debugged issues, and conducted user research. Got a sense of what product support looks like at scale and how to politely interact with customers and accept feedback.",
    link: null
  },
  {
    version: "v1.2.0", date: "Spring 2022",
    title: "SWE internship at JHU Applied Physics Lab",
    desc: "Built data visualization tools for global health research at Johns Hopkins Applied Physics Lab. Auditing a legacy internal tool sparked an interest in UX that changed my career direction.",
    link: null
  },
  {
    version: "v1.1.0", date: "Summer 2021",
    title: "First startup internship, building company website",
    desc: "Built the redesigned company website from scratch. First real experience working with a small startup team and shipping a customer-facing site.",
    link: null
  },
  {
    version: "v1.0.0", date: "Spring 2021",
    title: "Start design & development work at the DALI Lab",
    desc: "First learned web development and UI/UX design fundamentals through a student-taught mini course. Later became a full-stack software developer and designer working on small student teams.",
    link: null
  },
  {
    version: "v0.2.0", date: "Fall 2020",
    title: "Enrolled at Dartmouth College, CS + Math",
    desc: "Enrolled at Dartmouth College, initially studying Computer Science and Mathematics.",
    link: null
  },
  {
    version: "v0.1.0", date: "Spring 2017",
    title: "First line of code — Java, FIRST Robotics Competition",
    desc: "First lines of code in Java, written for the FIRST Robotics Competition in high school.",
    link: null
  },
];

<p className="text-lg leading-relaxed text-gray-600 dark:text-gray-400 mb-8">A version history of my career, education, and growth as a designer & engineer.</p>

{entries.map((e) => (
<Update key={e.version} label={e.version} description={e.date}>
  <strong>{e.title}</strong>
  <p>{e.desc}</p>
  {e.link && <p><a href={e.link}>{e.linkLabel} →</a></p>}
</Update>
))}
