update src/components/Footer/index.js, src/components/Product/index.js, src/components/ProductDescription/index.js and src/components/ProductStatusCard/index.js

temp
mahdi 2 years ago
parent afbcc34a3d
commit 24e079dc2c
  1. 31
      src/components/Footer/index.js
  2. 39
      src/components/ProductDescription/index.js
  3. 13
      src/components/ProductStatusCard/index.js

@ -86,7 +86,6 @@ const FooterDesign1 = ({ color, bg, items, hasHeader }) => {
) : ( ) : (
<img src={enamadlogo} alt="" className="w-32" /> <img src={enamadlogo} alt="" className="w-32" />
)} )}
<img <img
src={samandehi} src={samandehi}
alt="" alt=""
@ -110,65 +109,65 @@ export default FooterDesign1;
FooterDesign1.defaultProps = { FooterDesign1.defaultProps = {
items: [ items: [
{ {
name: `${window.t("لینکهای اصلی")}`, name: window.t("لینکهای اصلی"),
links: [ links: [
{ {
name: `${window.t("فروشگاه")}`, name: window.t("فروشگاه"),
link: "/products", link: "/products",
}, },
{ {
name: `${window.t("دربارهما")}`, name: window.t("دربارهما"),
link: "/about-us", link: "/about-us",
}, },
{ {
name: `${window.t("پرسشهای متداول")}`, name: window.t("پرسشهای متداول"),
link: "/faq", link: "/faq",
}, },
], ],
}, },
{ {
name: `${window.t("خدمات مشتریان")}`, name: window.t("خدمات مشتریان"),
links: [ links: [
{ {
name: `${window.t("شرایط و ضوابط استفاده")}`, name: window.t("شرایط و ضوابط استفاده"),
link: "#", link: "#",
}, },
{ {
name: `${window.t("راهنمای خرید")}`, name: window.t("راهنمای خرید"),
link: "#", link: "#",
}, },
{ {
name: `${window.t("همکاری تجاری")}`, name: window.t("همکاری تجاری"),
link: "#", link: "#",
}, },
], ],
}, },
{ {
name: `${window.t("کاربری")}`, name: window.t("کاربری"),
links: [ links: [
{ {
name: `${window.t("حساب کاربری")}`, name: window.t("حساب کاربری"),
link: "#", link: "#",
}, },
{ {
name: `${window.t("سبد خرید")}`, name: window.t("سبد خرید"),
link: "/cart", link: "/cart",
}, },
{ {
name: `${window.t("داشبورد کاربری")}`, name: window.t("داشبورد کاربری"),
link: "/dashboard", link: "/dashboard",
}, },
], ],
}, },
{ {
name: `${window.t("رضایت مشتریان")}`, name: window.t("رضایت مشتریان"),
links: [ links: [
{ {
name: `${window.t("رسیدگی به شکایات")}`, name: window.t("رسیدگی به شکایات"),
link: "/contact-us", link: "/contact-us",
}, },
{ {
name: `${window.t("پیگیری سفارشات")}`, name: window.t("پیگیری سفارشات"),
link: "/orders", link: "/orders",
}, },
], ],

@ -63,22 +63,21 @@ ProductDescription.defaultProps = {
navTitles: [ navTitles: [
{ {
id: 0, id: 0,
title: "", title: window.t("مشخصات"),
title: `${window.t("مشخصات")}`,
isActive: true, isActive: true,
name: "moshakhasat", name: "moshakhasat",
}, },
{ {
id: 1, id: 1,
title: `${window.t("نقد و بررسی")}`, title: window.t("نقد و بررسی"),
isActive: false, isActive: false,
name: "review", name: "review",
}, },
{ {
id: 2, id: 2,
title: `${window.t("برسش و باسخ")}`, title: window.t("برسش و باسخ"),
isActive: false, isActive: false,
}, },
@ -88,35 +87,35 @@ ProductDescription.defaultProps = {
name: "moshakhasat", name: "moshakhasat",
items: [ items: [
{ {
title: `${window.t("نوع تعداد وزن کتاب")}`, title: window.t("نوع تعداد وزن کتاب"),
description: `${window.t("۱ کیلوگرم")}`, description: window.t("۱ کیلوگرم"),
}, },
{ {
title: `${window.t("نوع تعداد صفحات")}`, title: window.t("نوع تعداد صفحات"),
description: `${window.t("400 صفحه")}`, description: window.t("400 صفحه"),
}, },
{ {
title: `${window.t("نوع کاغذ")}`, title: window.t("نوع کاغذ"),
description: `${window.t("گلاسه")}`, description: window.t("گلاسه"),
}, },
{ {
title: `${window.t("شماره شابک")}`, title: window.t("شماره شابک"),
description: `${window.t("1225548218000005818765")}`, description: window.t("1225548218000005818765"),
}, },
{ {
title: `${window.t("انتشارات")}`, title: window.t("انتشارات"),
description: `${window.t("رزمندگان")}`, description: window.t("رزمندگان"),
}, },
{ {
title: `${window.t("نویسنده و یا معلف")}`, title: window.t("نویسنده و یا معلف"),
description: `${window.t("یک نویسنده گمنام")}`, description: window.t("یک نویسنده گمنام"),
}, },
{ {
title: `${window.t("قطع")}`, title: window.t("قطع"),
description: `${window.t("خشتی")}`, description: window.t("خشتی"),
}, },
{ {
title: `${window.t("سال انتشار")}`, title: window.t("سال انتشار"),
description: "1399", description: "1399",
}, },
], ],
@ -125,7 +124,7 @@ ProductDescription.defaultProps = {
name: "review", name: "review",
items: [ items: [
{ {
description: `${window.t("لورم ایبسوم")}`, description: window.t("لورم ایبسوم"),
}, },
], ],
}, },

@ -45,10 +45,7 @@ const ProductStatusCard = ({
<div className="flex flex-row items-center"> <div className="flex flex-row items-center">
<img src={shop} alt="" className="w-8" /> <img src={shop} alt="" className="w-8" />
<div className="flex flex-1 flex-col mr-3 text-sm gap-2"> <div className="flex flex-1 flex-col mr-3 text-sm gap-2">
<div className="text-tiny"> <div className="text-tiny">{"فروشنده" + " " + seller.name}</div>
{" "}
{"فروشنده" + " " + seller.name}
</div>
<div className="text-xs"> <div className="text-xs">
{"رضایت مشتریان" + " " + "%" + seller.rate * 20} {"رضایت مشتریان" + " " + "%" + seller.rate * 20}
</div> </div>
@ -81,18 +78,20 @@ const ProductStatusCard = ({
<div className="flex flex-col items-center py-3"> <div className="flex flex-col items-center py-3">
<p className="text-6xl text-blueC0 font-bold"> <p className="text-6xl text-blueC0 font-bold">
{separate(price)} {separate(price)}
<span className="text-sm text-gray-700 font-light mr-1">تومان</span> <span className="text-sm text-gray-700 font-light mr-1">
{window.t("تومان")}
</span>
</p> </p>
{offerPrice && ( {offerPrice && (
<p className="text-xs font-light text-gray-600 mt-2"> <p className="text-xs font-light text-gray-600 mt-2">
با خرید این کالا {window.t("با خرید این کالا")}
<span className="text-sm font-bold"> <span className="text-sm font-bold">
{" " + {" " +
separate(price - offerPrice) + separate(price - offerPrice) +
" " + " " +
"${`window.t(تومان)`}"} "${`window.t(تومان)`}"}
</span> </span>
صرفه جویی کنید {window.t("صرفه جویی کنید")}
</p> </p>
)} )}
</div> </div>

Loading…
Cancel
Save