// AppHeader — sticky navigation with quick nav, user dropdown const { useState: useHeaderState, useEffect: useHeaderEffect, useRef: useHeaderRef } = React; function Avatar({ name, size = 30 }) { const initials = (name || '?').split(' ').map(w => w[0]).join('').slice(0, 2).toUpperCase(); return (