Merge branch 'master' of http://gitlab.chiefsoft.net/WrenchBoard/WrenchBoardMainSite into Performing-task-Text-and-Image

This commit was merged in pull request #32.
This commit is contained in:
Ebube
2023-09-04 02:39:31 +01:00
23 changed files with 58 additions and 48 deletions
+13 -15
View File
@@ -1,8 +1,8 @@
import React from "react";
import IconOne from "../../assets/images/icon/usericon.png";
import IconTwo from "../../assets/images/icon/Findtaskicon.png";
import IconThree from "../../assets/images/icon/taskicon.png";
import IconFour from "../../assets/images/icon/walleticon.png";
import React from 'react';
import IconOne from '../../assets/images/icon/play.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 (
@@ -26,25 +26,23 @@ function ServicesHomeOne({ className }) {
const serviceItems = [
{
icon: IconOne,
title: "Free Account",
description: "Join WrenchBoard. Create an account for Income.",
title: 'Free Account',
description: 'Join WrenchBoard. Get your free account.',
},
{
icon: IconTwo,
title: "Find Task",
description: "Build a Self-Portfolio with sole purpose to Cash-Out.",
title: 'Set Goals',
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.",
title: 'Complete',
description: 'Complete task, and notify assigner with ease.',
},
{
icon: IconFour,
title: "Get Paid",
description:
"Start Boosting your Income by earning Cash for your Time and Skills.",
title: 'Reward',
description: 'Task completed. Find your reward.',
},
];