From a5045a7c5fd89f10570bfde1236087b8a576bb82 Mon Sep 17 00:00:00 2001
From: Mubarak S <mubamuzeen09876@gmail.com>
Date: Mon, 24 Feb 2025 19:23:18 +0000
Subject: [PATCH] Upload New File

---
 trustedby.jsx | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 trustedby.jsx

diff --git a/trustedby.jsx b/trustedby.jsx
new file mode 100644
index 0000000..3ac89de
--- /dev/null
+++ b/trustedby.jsx
@@ -0,0 +1,26 @@
+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
-- 
GitLab