build fix started

This commit was merged in pull request #17.
This commit is contained in:
victorAnumudu
2024-08-07 18:49:29 +01:00
parent 63ffaba8f4
commit 61793d5d0e
38 changed files with 248 additions and 223 deletions
+2 -1
View File
@@ -4,6 +4,7 @@ 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 (
@@ -14,7 +15,7 @@ function ServiceItem({ icon, title, description, index }) {
style={{ cursor: "default" }}
>
<div className="icon">
<img src={icon} alt={title} width={70} height={70} loading="lazy" />
<Image src={icon} alt={title} width={70} height={70} loading="lazy" />
</div>
<h4 className="appie-title">{title}</h4>
<p>{description}</p>