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 = () => {
-