build(deps): update package.json, src/components/AddToCart/index.js, src/components/Banners/index.js and yarn.lock

master
mahdi 3 years ago
parent a95c47ddba
commit d8331b1f7c
  1. 2
      package.json
  2. 4
      src/components/AddToCart/index.js
  3. 79
      src/components/Banners/index.js
  4. 21876
      yarn.lock

@ -19,7 +19,7 @@
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
"react-modern-calendar-datepicker": "^3.1.6", "react-modern-calendar-datepicker": "^3.1.6",
"react-redux": "^7.2.6", "react-redux": "^7.2.6",
"react-router-dom": "^6.2.1", "react-router-dom": "6",
"react-scripts": "4.0.3", "react-scripts": "4.0.3",
"react-star-rating-component": "^1.4.1", "react-star-rating-component": "^1.4.1",
"react-tooltip": "^4.2.21", "react-tooltip": "^4.2.21",

@ -37,7 +37,7 @@ const AddToCartCard = ({
/> />
<div className="text-sm"> <div className="text-sm">
<h1 className="text-sm">{productName}</h1> <h1 className="text-sm">{productName}</h1>
<p className=" text-xs pt-2 text-blue-400">{productCat}</p> <p className="pt-2 text-xs text-blue-400">{productCat}</p>
</div> </div>
</div> </div>
)} )}
@ -56,7 +56,7 @@ const AddToCartCard = ({
تومان تومان
</h1> </h1>
{profit && ( {profit && (
<h5 className="text-xs p-2 pb-0 text-blue-400"> <h5 className="p-2 pb-0 text-xs text-blue-400">
با خرید این کالا {profit} تومان سود کنید با خرید این کالا {profit} تومان سود کنید
</h5> </h5>
)} )}

@ -1,60 +1,61 @@
import React from "react"; import React from "react";
const Banners = ({ const Banners = ({ mainBanner, leftBanner, midTopBanner, midBottomBanner }) => {
mainBanner,
leftBanner,
midTopBanner,
midBottomBanner,
}) => {
return ( return (
<div className="flex w-full justify-between" style={{ <div
height: '400px' className="w-full flex justify-between"
}}> style={{
<div className={`h-full w-1/2 rounded-xl flex items-center`} style={{ height: "400px",
background: mainBanner ? '' : 'rgba(134,160,185,0.16)', }}
>
}}> <div
className={`w-1/2 h-full flex items-center rounded-xl`}
<img src={mainBanner} className="rounded-xl h-full" /> style={{
background: mainBanner ? "" : "rgba(134,160,185,0.16)",
}}
>
<img src={mainBanner} className="h-full rounded-xl" alt="banner" />
</div> </div>
<div className="flex h-full w-1/2 "> <div className="w-1/2 h-full flex">
<div className="flex flex-col w-1/2 h-full px-6 justify-center items-between"> <div className="w-1/2 h-full flex flex-col justify-center items-between px-6">
<div
<div className={`${midTopBanner ? '' : 'h-1/2 '} w-full rounded-xl mb-2`} className={`${midTopBanner ? "" : "h-1/2 "} w-full rounded-xl mb-2`}
style={{ style={{
background: midTopBanner ? '' : 'rgba(134,160,185,0.16)', background: midTopBanner ? "" : "rgba(134,160,185,0.16)",
}} }}
> >
<img
<img src={midTopBanner} className="rounded-xl" /> src={midTopBanner}
className="rounded-xl"
alt="mid-top-banner"
/>
</div> </div>
<div className={`${midBottomBanner ? '' : 'h-1/2 '} w-full rounded-xl mt-2`} <div
className={`${
midBottomBanner ? "" : "h-1/2 "
} w-full rounded-xl mt-2`}
style={{ style={{
background: midBottomBanner ? '' : 'rgba(134,160,185,0.16)', background: midBottomBanner ? "" : "rgba(134,160,185,0.16)",
}} }}
> >
<img
<img src={midBottomBanner} className="rounded-xl" /> src={midBottomBanner}
className="rounded-xl"
alt="mid-bottom-banner"
/>
</div> </div>
</div> </div>
<div className=" h-full w-1/2 rounded-xl" <div
className="w-1/2 h-full rounded-xl"
style={{ style={{
background: leftBanner ? '' : 'rgba(134,160,185,0.16)', background: leftBanner ? "" : "rgba(134,160,185,0.16)",
}} }}
> >
<img src={leftBanner} className="rounded-xl" /> <img src={leftBanner} className="rounded-xl" alt="left-banner" />
</div> </div>
</div> </div>
</div> </div>
) );
} };
export default Banners; export default Banners;

21876
yarn.lock

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save