Skip to content

Commit

Permalink
Merge pull request #132 from pradeepSDE/popular-responsive
Browse files Browse the repository at this point in the history
Popular responsive
  • Loading branch information
mohitparmar1 authored May 19, 2024
2 parents 8e6ba36 + f6a738d commit 49771d5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/Components/Popular.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ const Popular = () => {
<h1 className="text-4xl font-medium text-center font-Poppins mt-9 col-span-full">
Popular In Women
</h1>
<hr className="w-[200px] mx-auto h-2 bg-gray-400 rounded-xl col-span-full" />
{dataProduct.map((item) => {
return <Item data={item} key={item.id} />;
})}

<hr className="w-[200px] h-2 bg-gray-400 col-span-full rounded-xl" />
<div className="sm:flex">
{dataProduct.map((item) => {
return <Item data={item} key={item.id} />;
})}
</div>

</div>
);
};
Expand Down

0 comments on commit 49771d5

Please sign in to comment.