/* global React */ const NS = window.AlessandroMerliPortfolioDesignSystem_251cec; const { SectionHeader, ProjectCard, Button, Divider, MonoLabel, AwardRow } = NS; function HomeScreen({ heroVariant = 'A', go }) { const { Section, ClientStrip } = window.AMLayout; const D = window.AM_DATA; const HomeHero = window.HomeHero; return (
go('work')} onContact={() => go('contact')} /> {/* Selected work */}
go('work')}>All work →} />
{D.projects.map((p) => ( { e.preventDefault(); e.stopPropagation(); go('product', p.id); }} /> ))}
{/* About teaser */}
About

The best decisions live at the intersection of strategy, engineering rigor, and the rider.

Industrial Designer at Cinelli since 2021 — eight full-cycle launches, R&D timelines cut by up to 30%, and metal 3D printing brought into serial production.

{/* Recognition teaser */}
go('recognition')}>All recognition →} />
{D.awards.map((a, i) => ( ))}
); } window.HomeScreen = HomeScreen;