import React from 'react';
import IconOne from '../../assets/images/icon/usericon.png';
import IconTwo from '../../assets/images/icon/task.png';
import IconThree from '../../assets/images/icon/target.png';
import IconFour from '../../assets/images/icon/reward.png';
function ServiceItem({ icon, title, description, index }) {
return (
);
}
function ServicesHomeOne({ className }) {
const serviceTitle = "Set Goals and Rewards to Inspire";
const serviceItems = [
{
icon: IconOne,
title: 'Free Account',
description: 'Join WrenchBoard. Create an account for Income.',
},
{
icon: IconTwo,
title: 'Find Task',
description: 'Suggest or find what you want to get rewarded for.',
},
{
icon: IconThree,
title: 'Complete',
description: 'Organize and Manage your teams efficiently. Manage your workgroup.',
},
{
icon: IconFour,
title: 'Reward',
description: 'Start Boosting your Income by earning Cash for your Time and Skills.',
},
];
return (
{serviceItems.map(({ icon, title, description }, index) => (
))}
);
}
export default ServicesHomeOne;