From 5ab9a3e8eedd9d6d2f78ba8bfe0a66983347e69a Mon Sep 17 00:00:00 2001 From: mahdi Date: Sun, 12 Jun 2022 11:14:07 +0430 Subject: [PATCH] update src/components/AddToCart/index.js and src/components/Footer/index.js --- src/components/AddToCart/index.js | 2 +- src/components/Footer/index.js | 41 +++++++++++++++++-------------- 2 files changed, 23 insertions(+), 20 deletions(-) diff --git a/src/components/AddToCart/index.js b/src/components/AddToCart/index.js index 7d37def..2d50dd0 100644 --- a/src/components/AddToCart/index.js +++ b/src/components/AddToCart/index.js @@ -31,7 +31,7 @@ const AddToCartCard = ({ }, { icon: shieldTick, - description: `${window.t("گارانتی اصالت و سلامت فیزیکی")}`, + description: `${window.t("گارانتی اصالت و سلامت فیزیکی")} `, }, ]; return ( diff --git a/src/components/Footer/index.js b/src/components/Footer/index.js index 5846356..b45c99a 100644 --- a/src/components/Footer/index.js +++ b/src/components/Footer/index.js @@ -21,11 +21,13 @@ const FooterDesign1 = ({ color, bg, items, hasHeader }) => {

- 7 روز هفته - 24 ساعته + 7 + {window.t("روز هفته")} + 24 + {window.t("ساعته")}

- منتظر شنیدن صدای گرمتان هستیم + {window.t("منتظر شنیدن صدای گرمتان هستیم")}

@@ -43,7 +45,7 @@ const FooterDesign1 = ({ color, bg, items, hasHeader }) => { download className="py-4 px-5 text-base font-bold rounded-md bg-blueC0 transition-all transform hover:scale-110 text-white" > - دانلود اپلیکیشن اندروید + {window.t("دانلود اپلیکیشن اندروید")} @@ -108,70 +110,71 @@ export default FooterDesign1; FooterDesign1.defaultProps = { items: [ { - name: "لینک‌های اصلی", + name: `${window.t("لینک‌های اصلی")}`, links: [ { - name: "فروشگاه", + name: `${window.t("فروشگاه")}`, link: "/products", }, { - name: "درباره‌ما", + name: `${window.t("درباره‌ما")}`, link: "/about-us", }, { - name: "پرسش‌های متداول", + name: `${window.t("پرسش‌های متداول")}`, link: "/faq", }, ], }, { - name: "خدمات مشتریان", + name: `${window.t("خدمات مشتریان")}`, links: [ { - name: "شرایط و ضوابط استفاده", + name: `${window.t("شرایط و ضوابط استفاده")}`, link: "#", }, { - name: "راهنمای خرید", + name: `${window.t("راهنمای خرید")}`, link: "#", }, { - name: "همکاری تجاری", + name: `${window.t("همکاری تجاری")}`, link: "#", }, ], }, { - name: "کاربری", + name: `${window.t("کاربری")}`, links: [ { - name: "حساب کاربری", + name: `${window.t("حساب کاربری")}`, link: "#", }, { - name: "سبد خرید", + name: `${window.t("سبد خرید")}`, link: "/cart", }, { - name: "داشبورد کاربری", + name: `${window.t("داشبورد کاربری")}`, link: "/dashboard", }, ], }, { - name: "رضایت مشتریان", + name: `${window.t("رضایت مشتریان")}`, links: [ { - name: "رسیدگی به شکایات", + name: `${window.t("رسیدگی به شکایات")}`, link: "/contact-us", }, { - name: "پیگیری سفارشات", + name: `${window.t("پیگیری سفارشات")}`, link: "/orders", }, ], }, ], + bg: "bg-white", color: "text-gray-600", hasHeader: true,