/* global React */ const NS = window.AlessandroMerliPortfolioDesignSystem_251cec; const { SectionHeader, AwardRow, MonoLabel, Badge, Card, Button, ImageFrame } = NS; function RecognitionScreen({ go }) { const { Section } = window.AMLayout; const D = window.AM_DATA; return (
{/* Awards list */}
Awards & Exhibitions
{D.awards.map((a, i) => ( ))}
{/* Patents */}
Patents
{D.patents.map((p, i) => (
{p.status} {p.number}

{p.title}

{p.project}

))}
{/* Headline metrics */}
{[['8', 'Full-cycle launches'], ['30%', 'R&D time reduced'], ['2', 'Granted patents'], ['5%', 'Aero gain, Aeroscoop']].map(([n, l]) => (
{n}
{l}
))}

Looking for someone who bridges design and engineering?

); } window.RecognitionScreen = RecognitionScreen;