function StatBand() { const stats = [ { v: "$3M+", k: "Client revenue generated", sub: "Tracked to PPC-sourced pipeline" }, { v: "15K+", k: "Qualified leads delivered", sub: "Across 6 aviation verticals" }, { v: "6.8%", k: "Average conversion rate", sub: "Our leads convert 25% more often than the industry standard" }, ]; return (
Flight log ยท Since 2019
{stats.map((s, i) => (
{s.v}
{s.k}
{s.sub}
))}
); } window.StatBand = StatBand;