update src/components/AddToCart/index.js and src/components/Footer/index.js

temp
mahdi 2 years ago
parent 3de684d757
commit 5ab9a3e8ee
  1. 2
      src/components/AddToCart/index.js
  2. 41
      src/components/Footer/index.js

@ -31,7 +31,7 @@ const AddToCartCard = ({
},
{
icon: shieldTick,
description: `${window.t("گارانتی اصالت و سلامت فیزیکی")}`,
description: `${window.t("گارانتی اصالت و سلامت فیزیکی")} `,
},
];
return (

@ -21,11 +21,13 @@ const FooterDesign1 = ({ color, bg, items, hasHeader }) => {
<img src={callIcon} className="p-2" />
<div>
<h1 className="text-2xl mb-4 font-bold">
<span className=" text-blueC0 font-black">7</span> روز هفته
<span className="text-blueC0 font-black">24</span> ساعته
<span className=" text-blueC0 font-black">7</span>
{window.t("روز هفته")}
<span className="text-blueC0 font-black">24</span>
{window.t("ساعته")}
</h1>
<p className="text-lg font-light text-blue5F">
منتظر شنیدن صدای گرمتان هستیم
{window.t("منتظر شنیدن صدای گرمتان هستیم")}
</p>
</div>
</div>
@ -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("دانلود اپلیکیشن اندروید")}
</a>
</div>
</div>
@ -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,

Loading…
Cancel
Save