import Image from "next/image" import Traction from "@/images/tractions/tractions.jpg" import logoForbes from "@/images/logos/forbes.svg" import logoTechcrunch from "@/images/logos/techcrunch.svg" import logoWired from "@/images/logos/wired.svg" import logoCnn from "@/images/logos/cnn.svg" import logoBbc from "@/images/logos/bbc.svg" import logoCbs from "@/images/logos/cbs.svg" import logoFastCompany from "@/images/logos/fast-company.svg" import logoHuffpost from "@/images/logos/huffpost.svg" import clsx from "clsx" const stats = [ { id: 1, name: 'Raised in sponsorship.', value: '7M+' }, { id: 2, name: 'Views from educational partners.', value: '3B+' }, { id: 3, name: 'Users deployed.', value: '300K' }, { id: 4, name: 'Revenues paid to NGOs', value: '$70M' }, ] export default function Tractions() { return (
{/* LEFT IMAGE + LOGO */}
    {[ ['Forbes', logoForbes], ['TechCrunch', logoTechcrunch], ['Wired', logoWired], ['CNN', logoCnn, 'hidden xl:block'], ['BBC', logoBbc], ['CBS', logoCbs], ['Fast Company', logoFastCompany], ['HuffPost', logoHuffpost, 'hidden xl:block'], ].map(([name, logo, className]) => (
  • {name}
  • ))}
{/* RIGHT TEXT BLOCK */}

Our track record

Trusted by Changemakers worldwide

Engage OS powers the digital headquarters for over 300,000 users across 50+ countries. From grassroots NGOs to global movements, our platform is built to scale impact, not just numbers.

{stats.map((stat) => (
{stat.name}
{stat.value}
))}
) }