diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 5e2cf47..4fd9c64 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -14,10 +14,12 @@ import MetricsSection from './HomePage/sections/Metrics'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import TrustedBySection from './HomePage/sections/TrustedBy';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/TrustedBy.tsx b/src/pages/HomePage/sections/TrustedBy.tsx new file mode 100644 index 0000000..6e06076 --- /dev/null +++ b/src/pages/HomePage/sections/TrustedBy.tsx @@ -0,0 +1,31 @@ +import LoopCarousel from '@/components/ui/LoopCarousel'; + +export default function TrustedBySection() { + const partners = [ + "Local Farmers Market", + "City Coffee Roasters", + "Organic Wheat Co.", + "Downtown Cafe", + "Heritage Mills", + "Artisan Guild" + ]; + + return ( +
+
+

Trusted by our local partners

+
+ +
+ {partners.map((partner, index) => ( + + {partner} + + ))} +
+
+
+
+
+ ); +} \ No newline at end of file