40 lines
933 B
JavaScript
40 lines
933 B
JavaScript
export const facts = [
|
|
{ number: 7518, description: "Completed Projects" },
|
|
{ number: 3472, description: "Satisfied Customers" },
|
|
{ number: 2184, description: "Expert Employees" },
|
|
{ number: 4523, description: "Awards Won" },
|
|
];
|
|
|
|
export const facts2 = [
|
|
{ number: "1000", suffix: "+", label: "Completed Projects" },
|
|
{ number: "50", suffix: "K+", label: "Happy Customers" },
|
|
{ number: "4", suffix: "x", label: "Revenue Growth" },
|
|
];
|
|
|
|
export const stats = [
|
|
{
|
|
count: 7518,
|
|
text: "Projects Done",
|
|
icon: "uil uil-presentation-check",
|
|
color: "btn-soft-purple",
|
|
},
|
|
{
|
|
count: 3472,
|
|
text: "Happy Customers",
|
|
icon: "uil uil-users-alt",
|
|
color: "btn-soft-red",
|
|
},
|
|
{
|
|
count: 4537,
|
|
text: "Expert Employees",
|
|
icon: "uil uil-user-check",
|
|
color: "btn-soft-yellow",
|
|
},
|
|
{
|
|
count: 2184,
|
|
text: "Awards Won",
|
|
icon: "uil uil-trophy",
|
|
color: "btn-soft-aqua",
|
|
},
|
|
];
|