diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 986da3f..3df585b 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -14,10 +14,12 @@ import ReviewsSection from './HomePage/sections/Reviews'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import PartnersSection from './HomePage/sections/Partners';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/Partners.tsx b/src/pages/HomePage/sections/Partners.tsx new file mode 100644 index 0000000..60e3f77 --- /dev/null +++ b/src/pages/HomePage/sections/Partners.tsx @@ -0,0 +1,24 @@ +import LoopCarousel from '@/components/ui/LoopCarousel'; + +export default function PartnersSection() { + const partners = ["Carrier", "Trane", "Lennox", "Goodman", "Rheem", "York", "Bryant", "Daikin", "Mitsubishi", "Ruud"]; + + return ( +
+
+

+ Trusted by industry leaders +

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