+ {LOGO_COMPANIES.map((companyId, index) => {
const company = COMPANIES[companyId];
const logoSrc = company?.logo?.light;
if (!logoSrc) return null;
+ const isAnimating = animatingId === companyId;
+ const animation = isAnimating
+ ? ANIMATIONS[index % ANIMATIONS.length]
+ : "";
+ const glow = COMPANY_GLOW[companyId] ?? "";
+
return (
);
})}
+
+ {/* Confetti burst on secret combo */}
+ {showConfetti && (
+
+
+ {["๐", "โจ", "๐๏ธ", "โจ", "๐"].map((emoji, i) => (
+
+ {emoji}
+
+ ))}
+
+
+ Echipa completฤ!
+
+
+ )}