parent
98e9c8dea1
commit
39b4fc8d1c
7 changed files with 207 additions and 2 deletions
After Width: | Height: | Size: 558 B |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 1021 B |
@ -0,0 +1,169 @@ |
|||||||
|
import React from "react"; |
||||||
|
|
||||||
|
import blackCancleIcon from "../../assets/icons/black-cancle-icon.svg"; |
||||||
|
import blackDeliveryIcon from "../../assets/icons/black-delivery-icon.svg"; |
||||||
|
import blackRightIcon from "../../assets/icons/black-right-icon.svg"; |
||||||
|
|
||||||
|
const ProductTags = () => { |
||||||
|
return ( |
||||||
|
<section className="w-11/12 mx-auto p-4 bg-white rounded-md shadow-md my-8"> |
||||||
|
<div className="flex items-center justify-between mb-6"> |
||||||
|
<h2 className="text-base bg-red-500 rounded-full shadow-sm shadow-black text-white p-2"> |
||||||
|
تگ محصولات |
||||||
|
</h2> |
||||||
|
</div> |
||||||
|
{/* product UI Design */} |
||||||
|
<div className="flex flex-wrap items-center justify-around "> |
||||||
|
{/* 1 */} |
||||||
|
<div className="mt-2 flex flex-wrap w-1/4 "> |
||||||
|
<button className=" rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
ارسال رایگان |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
برچسب های دیگر |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان سخت |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان آسان |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
آزمون |
||||||
|
</button> |
||||||
|
</div> |
||||||
|
{/* 2 */} |
||||||
|
<div className="mt-2 flex flex-wrap w-1/4 "> |
||||||
|
<button className=" rounded text-moreInfoButtonTextColor border border-moreInfoButtonBorderColor m-1 px-4 py-1 text-xs"> |
||||||
|
ارسال رایگان |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
برچسب های دیگر |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان سخت |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
</button> |
||||||
|
<button className="rounded text-moreInfoButtonTextColor border border-moreInfoButtonBorderColor m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان آسان |
||||||
|
</button> |
||||||
|
<button className="rounded text-moreInfoButtonTextColor border border-moreInfoButtonBorderColor m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
</button> |
||||||
|
<button className="rounded text-cancleButtonTextColor border border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
آزمون |
||||||
|
</button> |
||||||
|
</div> |
||||||
|
{/* 3 */} |
||||||
|
<div className="mt-2 flex flex-wrap w-1/4 "> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
ارسال رایگان |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
برچسب های دیگر |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان سخت |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان آسان |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
آزمون |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
</div> |
||||||
|
{/* 4 */} |
||||||
|
<div className="mt-2 flex flex-wrap w-1/4 "> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
ارسال رایگان |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
برچسب های دیگر |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان سخت |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان آسان |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
آزمون |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
</div> |
||||||
|
{/* 5 */} |
||||||
|
<div className="mt-2 flex flex-wrap w-1/4 "> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
<img src={blackDeliveryIcon} alt="" className="ml-1 w-3" /> |
||||||
|
ارسال رایگان |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
<img src={blackRightIcon} alt="" className="ml-1 w-3" /> |
||||||
|
ارسال رایگان |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
برچسب های دیگر |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان سخت |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
امتحان آسان |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
بسته بندی به صورت کادو |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
<button className="flex items-center rounded text-cancleButtonTextColor border-2 border-productTagBorderColor1 m-1 px-4 py-1 text-xs"> |
||||||
|
آزمون |
||||||
|
<img src={blackCancleIcon} alt="" className="mr-2 w-2" /> |
||||||
|
</button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</section> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default ProductTags; |
Loading…
Reference in new issue