// Hero.jsx — hero unit: badge, headline, sub, CTAs, stat row // `enhanced` adds count-up stats + a live KPI tile (see Improvements.jsx) const HERO_STATS = [ { num: '25+', label: 'Years of experience' }, { num: '3', label: 'Engagement tiers' }, { num: '90', label: 'Day transformation' }, { num: '€500k+', label: 'Ideal revenue stage' }, ]; function Hero({ enhanced }) { const Stats = (
{HERO_STATS.map((s) => ( enhanced ? : (
{s.num} {s.label}
) ))}
); const Main = (
⚙️   Fractional COO · E-commerce Operations

Scale your ecom brand
without the chaos.

A senior operational excellence partner for growing e-commerce brands that need structure, execution discipline, and scalable operating systems.

Built on 25+ years of complex operational transformation — Lean Six Sigma, global performance systems, strategy deployment, KPI management, and leadership coaching.

Book Operational Diagnostic → See the SCALE™ Model {Stats}
); return (
{enhanced ?
{Main}
: Main}
); } window.Hero = Hero;