// sections/Past.jsx — honest skeleton: real beats only, write-ups to come. function PastSection({ editorialStyle }) { return (
{/* A1 · Before ID */}
A1 · Before ID

Where I came from

I had a relatively artsy upbringing; my mother is a goldsmith, which gave me artisan activities early in life. My dad is an engineer turned manager, so my path sits between the two: I started ID as the connection of art and engineering, and now want to move toward a creative approach to management.

Year 1 was my breaking point, facing my flaws head-on; in year 2 I worked on fixing them and finding a vision, while my work drew me toward societal problems; year 3 continued that line while I kept addressing my shortcomings, without fully fixing them.

{/* A2 · Timeline */}
A2 · Timeline
to 2026
); } function Timeline({ events, accent }) { const chip = accent && accent.accent || 'var(--p-sage)'; return (
{events.map((e, i) =>
{e.year}
{e.label}
{e.body}
)}
); } window.PastSection = PastSection; function SectionMast({ section, subtitle }) { return (
{section.eyebrow}

{section.title}

{subtitle}

); } window.SectionMast = SectionMast;