update src/components/AddToCart/index.js and src/views/Home/Desktop/SalesContainer/index.js

temp
mahdi 2 years ago
parent 20a93f8a7c
commit 8e19d4f045
  1. 29
      src/components/AddToCart/index.js
  2. 7
      src/views/Home/Desktop/SalesContainer/index.js

@ -19,15 +19,19 @@ const AddToCartCard = ({
const specialities = [ const specialities = [
{ {
icon: circleTick, icon: circleTick,
description: ` توصیه به خرید توسط ${numberOfSuggest} نفر`, description: `${window.t(
"توصیه به خرید توسط"
)} ${numberOfSuggest} ${window.t("نفر")}`,
}, },
{ {
icon: linearGroup, icon: linearGroup,
description: `زمان ارسال ${sendingTime} روز کاری پس از سفارش`, description: `${window.t("زمان ارسال")} ${sendingTime} ${window.t(
"روز کاری پس از سفارش"
)}`,
}, },
{ {
icon: shieldTick, icon: shieldTick,
description: `گارانتی اصالت و سلامت فیزیکی`, description: `${window.t("گارانتی اصالت و سلامت فیزیکی")} `,
}, },
]; ];
return ( return (
@ -47,7 +51,10 @@ const AddToCartCard = ({
</div> </div>
)} )}
{specialities.map((item, index) => ( {specialities.map((item, index) => (
<div className="flex items-center p-2 w-full border-0 border-b border-solid border-gray-300" key={index}> <div
className="flex items-center p-2 w-full border-0 border-b border-solid border-gray-300"
key={index}
>
{item.icon && <img src={item.icon} className="pl-3" />} {item.icon && <img src={item.icon} className="pl-3" />}
<p className="text-sm text-blue52 text-right">{item.description}</p> <p className="text-sm text-blue52 text-right">{item.description}</p>
</div> </div>
@ -55,11 +62,12 @@ const AddToCartCard = ({
<div className="w-full flex flex-col items-center justify-center p-4"> <div className="w-full flex flex-col items-center justify-center p-4">
<h1 className="text-xl text-gray-500"> <h1 className="text-xl text-gray-500">
<span className=" text-blueC0"> {price} </span> <span className=" text-blueC0"> {price} </span>
تومان{" "} {window.t("تومان")}{" "}
</h1> </h1>
{profit && ( {profit && (
<h5 className="text-xs p-2 pb-0 text-blue52"> <h5 className="text-xs p-2 pb-0 text-blue52">
با خرید این کالا {profit} تومان سود کنید {window.t("با خرید این کالا")} {profit}{" "}
{window.t("تومان سود کنید")}
</h5> </h5>
)} )}
</div> </div>
@ -71,10 +79,13 @@ const AddToCartCard = ({
<> <>
<img src={specialities[0].icon} className="pl-3" /> <img src={specialities[0].icon} className="pl-3" />
<div className="text-sm"> <div className="text-sm">
<h3 className="text-blue52">بازگشت بی چون و چرا</h3> <h3 className="text-blue52">
{window.t("بازگشت بی چون و چرا")}
</h3>
<p> <p>
ما خیلی خوب هستیم و دوستتون داریم در صورتی که از کالایی خوشتون {window.t(
نیومد میتونید بی قید و شرط بسش بدید "ما خیلی خوب هستیم و دوستتون داریم در صورتی که از کالایی خوشتون نیومد میتونید بی قید و شرط بسش بدید"
)}
</p> </p>
</div> </div>
</> </>

@ -19,20 +19,21 @@ const SalesContainer = ({ books }) => {
<div className="text-3xl leading-normal"> <div className="text-3xl leading-normal">
<h3 className=" bg-blueC0 text-white text-center bold text-7xl"> <h3 className=" bg-blueC0 text-white text-center bold text-7xl">
{" "} {" "}
دوشنبه{" "} {window.t("دوشنبه")}{" "}
</h3> </h3>
<h3 <h3
className="mr-4 text-center font-semibold px-2 transform -translate-x-4 text-7xl" className="mr-4 text-center font-semibold px-2 transform -translate-x-4 text-7xl"
style={{ background: "#EFFF00" }} style={{ background: "#EFFF00" }}
> >
{" "} {" "}
کتاااابی{" "} {window.t("کتاااابی")}{" "}
</h3> </h3>
</div> </div>
</div> </div>
<div className="flex items-center"> <div className="flex items-center">
<p className="text-md flex text-lg font-bold"> <p className="text-md flex text-lg font-bold">
بیش از ۵۰ کتاب تخفیف خورده&nbsp; {window.t("بیش از ۵۰ کتاب تخفیف خورده")}
&nbsp;
</p> </p>
<div className="w-6 h-6 bg-greenDD mr-4 rounded-full"></div> <div className="w-6 h-6 bg-greenDD mr-4 rounded-full"></div>
</div> </div>

Loading…
Cancel
Save