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

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

@ -21,11 +21,13 @@ const FooterDesign1 = ({ color, bg, items, hasHeader }) => {
<img src={callIcon} className="p-2" /> <img src={callIcon} className="p-2" />
<div> <div>
<h1 className="text-2xl mb-4 font-bold"> <h1 className="text-2xl mb-4 font-bold">
<span className=" text-blueC0 font-black">7</span> روز هفته <span className=" text-blueC0 font-black">7</span>
<span className="text-blueC0 font-black">24</span> ساعته {window.t("روز هفته")}
<span className="text-blueC0 font-black">24</span>
{window.t("ساعته")}
</h1> </h1>
<p className="text-lg font-light text-blue5F"> <p className="text-lg font-light text-blue5F">
منتظر شنیدن صدای گرمتان هستیم {window.t("منتظر شنیدن صدای گرمتان هستیم")}
</p> </p>
</div> </div>
</div> </div>
@ -43,7 +45,7 @@ const FooterDesign1 = ({ color, bg, items, hasHeader }) => {
download download
className="py-4 px-5 text-base font-bold rounded-md bg-blueC0 transition-all transform hover:scale-110 text-white" className="py-4 px-5 text-base font-bold rounded-md bg-blueC0 transition-all transform hover:scale-110 text-white"
> >
دانلود اپلیکیشن اندروید {window.t("دانلود اپلیکیشن اندروید")}
</a> </a>
</div> </div>
</div> </div>
@ -108,70 +110,71 @@ export default FooterDesign1;
FooterDesign1.defaultProps = { FooterDesign1.defaultProps = {
items: [ items: [
{ {
name: "لینکهای اصلی", name: `${window.t("لینکهای اصلی")}`,
links: [ links: [
{ {
name: "فروشگاه", name: `${window.t("فروشگاه")}`,
link: "/products", link: "/products",
}, },
{ {
name: "دربارهما", name: `${window.t("دربارهما")}`,
link: "/about-us", link: "/about-us",
}, },
{ {
name: "پرسشهای متداول", name: `${window.t("پرسشهای متداول")}`,
link: "/faq", link: "/faq",
}, },
], ],
}, },
{ {
name: "خدمات مشتریان", name: `${window.t("خدمات مشتریان")}`,
links: [ links: [
{ {
name: "شرایط و ضوابط استفاده", name: `${window.t("شرایط و ضوابط استفاده")}`,
link: "#", link: "#",
}, },
{ {
name: "راهنمای خرید", name: `${window.t("راهنمای خرید")}`,
link: "#", link: "#",
}, },
{ {
name: "همکاری تجاری", name: `${window.t("همکاری تجاری")}`,
link: "#", link: "#",
}, },
], ],
}, },
{ {
name: "کاربری", name: `${window.t("کاربری")}`,
links: [ links: [
{ {
name: "حساب کاربری", name: `${window.t("حساب کاربری")}`,
link: "#", link: "#",
}, },
{ {
name: "سبد خرید", name: `${window.t("سبد خرید")}`,
link: "/cart", link: "/cart",
}, },
{ {
name: "داشبورد کاربری", name: `${window.t("داشبورد کاربری")}`,
link: "/dashboard", link: "/dashboard",
}, },
], ],
}, },
{ {
name: "رضایت مشتریان", name: `${window.t("رضایت مشتریان")}`,
links: [ links: [
{ {
name: "رسیدگی به شکایات", name: `${window.t("رسیدگی به شکایات")}`,
link: "/contact-us", link: "/contact-us",
}, },
{ {
name: "پیگیری سفارشات", name: `${window.t("پیگیری سفارشات")}`,
link: "/orders", link: "/orders",
}, },
], ],
}, },
], ],
bg: "bg-white", bg: "bg-white",
color: "text-gray-600", color: "text-gray-600",
hasHeader: true, hasHeader: true,

Loading…
Cancel
Save