import React from 'react';
import IconOne from '../../assets/images/icon/account_login.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. Get your free account.',
},
{
icon: IconTwo,
title: 'Set Goals',
description: 'Suggest or find what you want to get rewarded for.',
},
{
icon: IconThree,
title: 'Complete',
description: 'Complete task, and notify assigner with ease.',
},
{
icon: IconFour,
title: 'Reward',
description: 'Task completed. Find your reward.',
},
];
return (
{serviceItems.map(({ icon, title, description }, index) => (
))}
);
}
export default ServicesHomeOne;