diff --git a/src/Components/Sections/Services/Services.jsx b/src/Components/Sections/Services/Services.jsx index fefeafe..780695a 100644 --- a/src/Components/Sections/Services/Services.jsx +++ b/src/Components/Sections/Services/Services.jsx @@ -1,9 +1,9 @@ import React from "react"; import { Wallet, Zap, Users, PieChart, Sparkles } from "lucide-react"; -import { useTranslation } from "react-i18next"; +// import { useTranslation } from "react-i18next"; +import { withTranslation } from "react-i18next"; -const Services = () => { - const { t } = useTranslation(); +const Services = ({ t, i18n })=> { const features = [ { @@ -105,7 +105,12 @@ const Services = () => {
-
+ {/*
*/} +
@@ -114,12 +119,18 @@ const Services = () => {
-

+ {/*

*/} +

{t("services.pageTitle")}

-

+ {/*

*/} +

{t("services.mainHeading")}

@@ -137,4 +148,5 @@ const Services = () => { ); }; -export default Services; \ No newline at end of file +// export default Services; +export default withTranslation()(Services); \ No newline at end of file