/* global React */ const NS = window.AlessandroMerliPortfolioDesignSystem_251cec; const { SectionHeader, MonoLabel, Divider, Badge, Button, ImageFrame } = NS; function ExperienceRow({ item }) { return (
{item.org} {item.period}

{item.role}

{item.note}

); } function AboutScreen({ go }) { const { Section } = window.AMLayout; const D = window.AM_DATA; return (
{/* Intro */}
About

Driven by curiosity and a passion for method.

I’m an Industrial Design Engineer who believes the best design decisions live at the intersection of strategic thinking, engineering rigor, and a genuine understanding of the user. I work from first sketch to tooling-ready parametric CAD — and I care as much about how a part is made as how it looks.

{/* Experience */}
{D.experience.map((e, i) => )}
{/* Education + Tools */}
Education
{D.education.map((ed, i) => (

{ed.degree}

{ed.school} {ed.period}
))}
Tools & Strengths
{D.tools.map((t) => {t})}
Availability

EU citizen, open to relocation and remote / European roles. Fluent English (TOEIC), Italian native.

{/* CTA */}

Want the full picture? See the work.

); } window.AboutScreen = AboutScreen;