/* global React */ const { Button, Tab, MonoLabel, ImageFrame } = window.AlessandroMerliPortfolioDesignSystem_251cec; const LOGO = 'assets/am-mark.png'; /** * HomeHero — three explorable directions for the home opener. * A · Statement — full-bleed declaration, mark floating behind * B · Name-first — monumental name, role spec column, mark anchor right * C · Split gallery — big type left, featured project media right */ function HomeHero({ variant = 'A', onContact, onWork }) { const role = 'Industrial Design Engineer'; const place = 'Milan, IT'; const ctas = (
); /* ── A · STATEMENT ───────────────────────────────────────── */ if (variant === 'A') { return (
{role} · {place}

Form, force, and the parts that move people.

I design performance bicycles and hardware — bridging creative intent with engineering rigor, from first sketch to tooling-ready part.

{ctas}
); } /* ── B · NAME-FIRST ──────────────────────────────────────── */ if (variant === 'B') { return (
{role}

Alessandro
Merli

Performance bicycles and hardware, designed where strategy, engineering, and manufacturing meet.

{ctas}
AM
); } /* ── C · SPLIT GALLERY ───────────────────────────────────── */ return (
{role} · {place}

Designing fast bicycles, engineered to be made.

Eight full-cycle launches at Cinelli, two granted patents, and an iF Design Award.

{ctas}
); } window.HomeHero = HomeHero;