added unit

This commit is contained in:
Ebube
2023-08-28 18:44:04 +01:00
parent 71b30b8987
commit bbc2bd29fa
+2 -2
View File
@@ -6,7 +6,7 @@ import IconFour from '../../assets/images/icon/walleticon.png';
function ServiceItem({ icon, title, description, index }) {
return (
<div className="appie-single-service text-center mt-30 wow animated fadeInUp" data-wow-duration="2000ms" data-wow-delay={200 * (index + 1)} style={{ cursor: "default" }}>
<div className="appie-single-service text-center mt-30 wow animated fadeInUp" data-wow-duration="2000ms" data-wow-delay={`${200 * (index + 1)}ms`} style={{ cursor: "default" }}>
<div className="icon">
<img src={icon} alt={title} />
</div>
@@ -17,7 +17,7 @@ function ServiceItem({ icon, title, description, index }) {
}
function ServicesHomeOne({ className }) {
const serviceTitle = "Start getting paid in easy steps."
const serviceTitle = ""
const serviceItems = [
{
icon: IconOne,