parent
ee9a41e3f0
commit
2b5afc7979
3 changed files with 40 additions and 2 deletions
@ -0,0 +1,28 @@ |
||||
import React from "react"; |
||||
|
||||
import productImg from "./product-chair.svg"; |
||||
|
||||
const ProductSuggestion = () => { |
||||
return ( |
||||
<section className="m-10"> |
||||
<h2 className="text-center text-lg font-bold text-productPrice"> |
||||
این کالاها برای خرید به شما پیشنهام می دهیم |
||||
</h2> |
||||
<div className="flex justify-center mt-7"> |
||||
{/* <div>+</div> */} |
||||
<div className="flex flex-col items-center border rounded border-gray-200 bg-white p-4"> |
||||
<img src={productImg} alt="" className="w-full h-full" /> |
||||
<h2 className="my-3 text-sm text-productPrice"> |
||||
لپ تاپ گیمینگ ایسوس |
||||
</h2> |
||||
<p className="text-xs"> |
||||
945/000 |
||||
<span className="mr-2">تومان</span> |
||||
</p> |
||||
</div> |
||||
</div> |
||||
</section> |
||||
); |
||||
}; |
||||
|
||||
export default ProductSuggestion; |
After Width: | Height: | Size: 39 KiB |
Loading…
Reference in new issue