diff --git a/src/Components/Sections/Services/Services.jsx b/src/Components/Sections/Services/Services.jsx index 780695a..8d477eb 100644 --- a/src/Components/Sections/Services/Services.jsx +++ b/src/Components/Sections/Services/Services.jsx @@ -1,9 +1,8 @@ import React from "react"; import { Wallet, Zap, Users, PieChart, Sparkles } from "lucide-react"; -// import { useTranslation } from "react-i18next"; import { withTranslation } from "react-i18next"; -const Services = ({ t, i18n })=> { +const Services = ({ t, i18n }) => { const features = [ { @@ -33,47 +32,46 @@ const Services = ({ t, i18n })=> { ]; return ( -
-
-
-
-
-
-
-
-
- {features.map((feature) => ( -
-
- -
-
-
- {feature.icon} -
-
-

- {feature.title} -

-

- {feature.description} -

+
+
+
+ {/* Left side - Features Cards */} +
+
+ {features.map((feature) => ( +
+
+ +
+
+
+ {feature.icon} +
+
+

+ {feature.title} +

+

+ {feature.description} +

+
-
- ))} + ))} +
-
-
-
-
-
+ + {/* Right side - Content with Gradient Background */} +
+
+ {/* Desktop Gradient Background */} +
{ borderTopRightRadius: '9999px', borderBottomRightRadius: '9999px' }} - > -
+ >
-
+ + {/* Mobile/Tablet Gradient Background */} +
{
+ + {/* Decorative Elements */} +
+
+
+
+
+ +
-
-
-
-
-
-
-
- {/*
*/} -
-
-
-
- - {t("services.summary")} - - + + {/* Content */} +
+
+
+
+ + {t("services.summary")} + + +
+

+ {t("services.pageTitle")} +

- {/*

*/} -

- {t("services.pageTitle")} -

+ +
+

+ {t("services.mainHeading")} +

+
+
+ +

+ {t("services.description")} +

-
- {/*

*/} -

- {t("services.mainHeading")} -

-
-
-

- {t("services.description")} -

-
-
-
+
); }; -// export default Services; export default withTranslation()(Services); \ No newline at end of file