import React from "react"; import Image from "next/image"; const Portfolio = () => { const stats = [ { value: "3.0+M", label: "Users at organizations from startups to fortune 500", bgColor: "bg-green-500", image: { src: "/Sweven/green.png", position: "-left-8 -top-40", }, }, { value: "27", label: "Years in business", bgColor: "bg-[#e3b1b2]", }, { value: "30+%", label: "growth pa", bgColor: "bg-[#00A2FF]", }, { value: "99.6%", label: "Implementation success rate", bgColor: "bg-blue-500", image: { src: "/Sweven/upper.png", position: "-right-24 -top-32", }, }, { value: "zero code", label: "Deep configuration with zero code", bgColor: "bg-[#F6B65F]", image: { src: "/Sweven/dotted.png", position: "-right-20 bottom-16", }, }, ]; return (

Agiloft by the Numbers

{stats.map((stat, index) => (
{stat.value}
{stat.label}
{stat.image && ( Decorative )}
))}
3.0+M
Users at organizations from startups to fortune 500
Arrow
27
Years in business
30+%
growth pa
99.6%
Implementation success rate
Arrow
zero code
Deep configuration with zero code
Dotted Arrow
); }; export default Portfolio;