This commit is contained in:
Ebube
2023-08-28 18:42:12 +01:00
parent 81fe0f6acf
commit 71b30b8987
+3 -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)} style={{ cursor: "default" }}>
<div className="icon">
<img src={icon} alt={title} />
</div>
@@ -17,6 +17,7 @@ function ServiceItem({ icon, title, description, index }) {
}
function ServicesHomeOne({ className }) {
const serviceTitle = "Start getting paid in easy steps."
const serviceItems = [
{
icon: IconOne,
@@ -47,7 +48,7 @@ function ServicesHomeOne({ className }) {
<div className="col-lg-8">
<div className="appie-section-title text-center">
<h3 className="appie-title">
Start getting paid in easy steps.
{serviceTitle}
</h3>
</div>
</div>