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';
import Main from '../lnd/LndParts/Design/Main';
import Image from 'next/image';
function ServiceItem({ icon, title, description, index }) {
return (
);
}
function ServicesHomeOne({ className }) {
return (
);
}
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',
},
];