+ {duplicatedLogos.map((logo, index) => {
+ // Custom scaling and rectangle size for specific logos
+ let customImgStyle = {
+ maxHeight: 40,
+ maxWidth: 120,
+ width: "auto",
+ height: "auto",
+ objectFit: "contain",
+ background: "#fff",
+ borderRadius: "999px",
+ padding: 2,
+ margin: "0 auto",
+ display: "block",
+ };
+ if (logo.name === "14 & Elm") {
+ customImgStyle.maxHeight = 48 * 1.5;
+ customImgStyle.maxWidth = 140 * 1.5;
+ }
+ if (logo.name === "L3 Harris") {
+ customImgStyle.maxHeight = 90 * 1.3;
+ customImgStyle.maxWidth = 220 * 1.3;
+ }
+ if (logo.name === "Williams Energy Partners") {
+ customImgStyle.maxHeight = 90 * 1.2;
+ customImgStyle.maxWidth = 220 * 1.2;
+ }
+ if (logo.name === "Phillips 66") {
+ customImgStyle.maxHeight = 60 * 0.9;
+ customImgStyle.maxWidth = 120 * 0.9;
+ }
+ if (logo.name === "Polymaker") {
+ customImgStyle.maxHeight = 60 * 0.9;
+ customImgStyle.maxWidth = 120 * 0.9;
+ }
+ if (logo.name === "TC Energy") {
+ customImgStyle.maxHeight = 60 * 0.9;
+ customImgStyle.maxWidth = 120 * 0.9;
+ }
+ return (
+
+
+
+ );
+ })}
+