import React from 'react'; import IconOne from '../../assets/images/icon/reward.png'; import IconTwo from '../../assets/images/icon/assign-chores.png'; import IconThree from '../../assets/images/icon/financial-education.png'; import IconFour from '../../assets/images/icon/family-connect.png'; function ServiceItem({ icon, title, description, index }) { return (
{title}

{title}

{description}

); } function ServicesHomeOne({ className }) { return (

Set Chores, Set Goals and
Rewards Accomplishments

{serviceItems.map(({ icon, title, description }, index) => (
))}
); } export default ServicesHomeOne; const serviceTitle = `Set Chores, Set Goals and Rewards Accomplishments`; const serviceItems = [ { icon: IconOne, title: 'Reward Goals Met', description: 'Set goals together and reward accomplishment', }, { icon: IconTwo, title: 'Assign Regular Chores', description: 'Organize essential regular chores to be done', }, { icon: IconThree, title: 'Financial Education', description: 'Get Kids start early on money management', }, { icon: IconFour, title: 'Family Connect', description: 'Connect family, share accomplishments with friends', }, ];