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,