update 7 files

master
mahdi 2 years ago
parent 3bd6fb08c6
commit 0516ccc9b6
  1. 12
      src/components/Accordion/AccordionDesign1/index.js
  2. 2
      src/components/Accordion/index.js
  3. 2
      src/components/AddToCart/index.js
  4. 6
      src/components/Advertisements/Design1/index.js
  5. 6
      src/components/Advertisements/Design2/index.js
  6. 10
      src/components/Advertisements/Design3/index.js
  7. 2
      src/components/Advertisements/index.js

@ -154,10 +154,12 @@ function AccordionDesign1({ vod }) {
} cursor-pointer`} } cursor-pointer`}
> >
<CircleInCircle <CircleInCircle
parentClassName={"bg-primary w-0 h- "} parentClassName={"bg-primary w-4 h-4"}
childClassName={false} childClassName={false}
/> />
<h2 className="flex-1 mr-5 text-sm">{item.title}</h2> <h2 className="flex-1 mr-5 text-sm text-primaryText">
{item.title}
</h2>
{vod && ( {vod && (
<div className="flex flex-row items-center ml-5 "> <div className="flex flex-row items-center ml-5 ">
<p className="text-xs text-primary"> <p className="text-xs text-primary">
@ -202,12 +204,14 @@ function AccordionDesign1({ vod }) {
</span> </span>
</div> </div>
<div className="w-0.5 h-5 mx-3 bg-primary"></div> <div className="w-0.5 h-5 mx-3 bg-primary"></div>
<p className="text-sm flex-1">{subItem.name}</p> <p className="text-xs flex-1 text-primaryText">
{subItem.name}
</p>
<div className="flex flex-row items-center justify-end gap-x-3 flex-1"> <div className="flex flex-row items-center justify-end gap-x-3 flex-1">
{vod ? ( {vod ? (
<> <>
<div className="flex flex-row items-center ml-7"> <div className="flex flex-row items-center ml-7">
<p className="text-xs"> <p className="text-xs primaryText">
دقیقه: دقیقه:
<span>{item.min}</span> <span>{item.min}</span>
</p> </p>

@ -10,7 +10,7 @@ function Accordion() {
return ( return (
<div className="w-full flex flex-col items-center"> <div className="w-full flex flex-col items-center">
<select <select
className="mb-10 w-20 bg-surface" className="mb-10 w-20 bg-surface border border-surfaceBorder"
onChange={(e) => setType(e.target.value)} onChange={(e) => setType(e.target.value)}
> >
{Object.keys(list).map((option, index) => ( {Object.keys(list).map((option, index) => (

@ -12,7 +12,7 @@ function AddToCart() {
return ( return (
<div className="w-full flex flex-col items-center"> <div className="w-full flex flex-col items-center">
<select <select
className="mb-10 w-20 bg-gray-200" className="mb-10 w-20 bg-surface border border-surfaceBorder"
onChange={(e) => setType(e.target.value)} onChange={(e) => setType(e.target.value)}
> >
{Object.keys(list).map((option, index) => ( {Object.keys(list).map((option, index) => (

@ -32,15 +32,15 @@ const AdvertisementDesign1 = () => {
className="bg-green-200 bg-opacity-40 absolute rounded-full backdrop-filter backdrop-blur-md" className="bg-green-200 bg-opacity-40 absolute rounded-full backdrop-filter backdrop-blur-md"
></div> ></div>
<div className="w-full h-full flex flex-col justify-center p-10 absolute right-0 bottom-0 z-50"> <div className="w-full h-full flex flex-col justify-center p-10 absolute right-0 bottom-0 z-50">
<h2 className="text-lg">تبلیغات دانوینی</h2> <h2 className="text-lg text-primaryText">تبلیغات دانوینی</h2>
<p className="mt-2 text-sm text-justify leading-6"> <p className="mt-2 text-sm text-primaryText text-justify leading-6">
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده
از طراحان گرافیک است. از طراحان گرافیک است.
</p> </p>
</div> </div>
<Button <Button
text="دانلود اپلیکیشن" text="دانلود اپلیکیشن"
className="p-3 text-base rounded-sm border absolute left-1/2 bottom-0 transform -translate-x-1/2 -translate-y-1/2 z-50" className="p-3 text-primaryText text-base rounded border border-primary absolute left-1/2 bottom-0 transform -translate-x-1/2 -translate-y-1/2 z-50"
/> />
</div> </div>
); );

@ -5,14 +5,14 @@ const AdvertisementDesign2 = () => {
return ( return (
<div className="w-fit h-[226px] relative bg-[#E3F2FF] rounded-3xl"> <div className="w-fit h-[226px] relative bg-[#E3F2FF] rounded-3xl">
<div className="w-8/12 flex flex-col justify-center p-10"> <div className="w-8/12 flex flex-col justify-center p-10">
<h2 className="text-lg">تبلیغات دانوینی</h2> <h2 className="text-lg text-primaryText">تبلیغات دانوینی</h2>
<p className="text-sm text-justify leading-6 mt-2"> <p className="text-sm text-justify leading-6 mt-2 text-primaryText">
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده
از طراحان گرافیک است. از طراحان گرافیک است.
</p> </p>
<Button <Button
text="دانلود اپلیکیشن" text="دانلود اپلیکیشن"
className="w-fit self-end p-3 bg-[#132F52] text-sm text-white border rounded-lg" className="w-fit self-end p-3 bg-primary text-sm text-primaryText border border-primary rounded"
/> />
</div> </div>
<div <div

@ -5,8 +5,8 @@ const AdvertisementDesign3 = ({ features }) => {
return ( return (
<div className="relative bg-[#E3F2FF] rounded-3xl"> <div className="relative bg-[#E3F2FF] rounded-3xl">
<div className="flex flex-col justify-center p-10"> <div className="flex flex-col justify-center p-10">
<h2 className="text-lg text-[#132F52] z-50">تبلیغات دانوینی</h2> <h2 className="text-lg text-primaryText z-50">تبلیغات دانوینی</h2>
<p className="text-sm text-justify leading-6 mt-2 text-[#132F52] z-50"> <p className="text-sm text-justify leading-6 mt-2 text-primaryText z-50">
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده
از طراحان گرافیک است. از طراحان گرافیک است.
</p> </p>
@ -14,7 +14,7 @@ const AdvertisementDesign3 = ({ features }) => {
{features.map((feature, i) => ( {features.map((feature, i) => (
<div className="flex flex-row items-center mt-2"> <div className="flex flex-row items-center mt-2">
<img src={feature.icon} alt="icon" className="w-6 z-50" /> <img src={feature.icon} alt="icon" className="w-6 z-50" />
<p className="mr-2 text-sm text-justify text-[#132F52] leading-6 z-50"> <p className="mr-2 text-sm text-justify text-primaryText leading-6 z-50">
{feature.title} {feature.title}
</p> </p>
</div> </div>
@ -45,11 +45,11 @@ const AdvertisementDesign3 = ({ features }) => {
<div className="absolute flex flex-row gap-x-4 bottom-5 left-10"> <div className="absolute flex flex-row gap-x-4 bottom-5 left-10">
<Button <Button
text="تماس با ما" text="تماس با ما"
className="text-sm text-blue-500 border-2 border-blue-500 rounded p-2 " className="text-sm text-primaryText border-2 border-primary rounded p-2 hover:bg-primary"
/> />
<Button <Button
text="به سلامت" text="به سلامت"
className="bg-blue-500 text-sm text-white border-2 border-blue-500 rounded p-2 " className="bg-primary text-sm text-primaryText border-2 border-primary rounded p-2 hover:bg-primaryDark hover:border-primaryDark"
/> />
</div> </div>
</div> </div>

@ -14,7 +14,7 @@ function Advertisements() {
return ( return (
<div className="w-full flex flex-col items-center"> <div className="w-full flex flex-col items-center">
<select <select
className="mb-10 w-20 bg-gray-200" className="mb-10 w-20 bg-surface border border-surfaceBorder"
onChange={(e) => setType(e.target.value)} onChange={(e) => setType(e.target.value)}
> >
{Object.keys(list).map((option, index) => ( {Object.keys(list).map((option, index) => (

Loading…
Cancel
Save