Skip to content
Snippets Groups Projects
Commit 14994d21 authored by Mubarak S's avatar Mubarak S
Browse files

Delete trustedby.jsx

parent a5045a7c
No related branches found
No related tags found
No related merge requests found
import React from "react";
function Trusted() {
return (
<section className="flex flex-col py-10 bg-white">
<h2 className="text-4xl md:text-5xl text-[#28409C] mb-6 px-[40px]">
Trusted By
</h2>
<div className="flex flex-col md:flex-row gap-6 justify-center items-center">
{[
{ count: "100+", label: "Sellers" },
{ count: "500+", label: "Buyers" },
{ count: "200+", label: "Products" },
].map((item, index) => (
<div
key={index}
className="bg-blue-50 p-6 rounded-lg shadow-md w-60 text-center border border-gray-200 ml-7"
>
<p className="text-3xl font-bold text-black">{item.count}</p>
<p className="text-lg text-blue-700">{item.label}</p>
</div>
))}
</div>
</section>
);
}
export default Trusted;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment