// LogosBand — authentic platform marks recreated as inline SVGs using each // brand's real wordmark shape, proportions, and official color palette. const LogosBand = ({ caption = "Platforms we operate on" }) => { const logos = [ { name: "The Trade Desk", svg: ( {/* TTD "power" icon — stacked chevrons in signature cyan */} The Trade Desk ), }, { name: "Display & Video 360", svg: ( {/* Google "G" mark (official four-color arc) */} GOOGLE Display & Video 360 ), }, { name: "Yahoo", svg: ( Yahoo! ), }, { name: "Xandr", svg: ( {/* Xandr: lowercase wordmark w/ the signature "r" dot and teal accent */} xandr {/* Official Xandr "x" crossbar accent */} ), }, { name: "Roku", svg: ( Roku ), }, { name: "Samsung Ads", svg: ( {/* Samsung blue oval wordmark */} SAMSUNG Ads ), }, { name: "AppsFlyer", svg: ( {/* AF blue chevron */} AppsFlyer ), }, { name: "Adjust", svg: ( {/* Adjust rounded-square mark */} adjust ), }, { name: "AWS", svg: ( aws ), }, { name: "Google Cloud", svg: ( {/* Google "G" mark (official four-color) */} Google Cloud ), }, ]; return (
{caption}
{logos.map((l) => (
{ e.currentTarget.style.background = "var(--ink-50)"; }} onMouseLeave={e => { e.currentTarget.style.background = "var(--paper)"; }} >
{React.cloneElement(l.svg, { style: { display: "block", width: "100%", height: "auto", maxHeight: 36, }, })}
))}

Trademarks are property of their respective owners.

); }; window.LogosBand = LogosBand;