diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 7b9bbbe..91383e4 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -16,7 +16,8 @@ import ContactSection from './HomePage/sections/Contact';
import FaqSection from './HomePage/sections/Faq';
-import CertificationsSection from './HomePage/sections/Certifications';export default function HomePage(): React.JSX.Element {
+import CertificationsSection from './HomePage/sections/Certifications';
+import ClientLogosSection from './HomePage/sections/ClientLogos';export default function HomePage(): React.JSX.Element {
return (
<>
@@ -31,6 +32,7 @@ import CertificationsSection from './HomePage/sections/Certifications';export de
+
diff --git a/src/pages/HomePage/sections/ClientLogos.tsx b/src/pages/HomePage/sections/ClientLogos.tsx
new file mode 100644
index 0000000..ddce1ff
--- /dev/null
+++ b/src/pages/HomePage/sections/ClientLogos.tsx
@@ -0,0 +1,36 @@
+import React from 'react';
+import LoopCarousel from '@/components/ui/LoopCarousel';
+
+export default function ClientLogosSection() {
+ return (
+
+
+
+
+ Proudly serving top restaurants & cafes
+
+
+
+
+ {[
+ "The French Laundry",
+ "Balthazar",
+ "Tartine Bakery",
+ "Blue Hill",
+ "Le Bernardin",
+ "Eleven Madison Park",
+ "Alinea",
+ "Per Se"
+ ].map((partner, i) => (
+
+ {partner}
+
+ ))}
+
+
+
+
+
+
+ );
+}
\ No newline at end of file