4 Commits

Author SHA1 Message Date
kudinDmitriyUp
06291f1d61 Bob AI: Remove the partners section from the home page. 2026-07-01 20:13:00 +00:00
801a71a63c Merge version_14_1782936588210 into main
Merge version_14_1782936588210 into main
2026-07-01 20:11:34 +00:00
kudinDmitriyUp
6bdd737c93 Bob AI: Added the provided image to the partners section 2026-07-01 20:10:48 +00:00
37d682e175 Merge version_13_1782936101294 into main
Merge version_13_1782936101294 into main
2026-07-01 20:03:43 +00:00
2 changed files with 18 additions and 22 deletions

View File

@@ -14,26 +14,17 @@ import ReviewsSection from './HomePage/sections/Reviews';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
import PartnersSection from './HomePage/sections/Partners';export default function HomePage(): React.JSX.Element {
export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<PartnersSection />
<AboutSection />
<ServicesSection />
<MetricsSection />
<TeamSection />
<ReviewsSection />
<FaqSection />
<ContactSection />
<>
<HeroSection />
<AboutSection />
<ServicesSection />
<MetricsSection />
<TeamSection />
<ReviewsSection />
<FaqSection />
<ContactSection />
</>
);
}
}

View File

@@ -1,11 +1,16 @@
import LoopCarousel from '@/components/ui/LoopCarousel';
import ImageOrVideo from '@/components/ui/ImageOrVideo';
export default function PartnersSection() {
const partners = ["Carrier", "Trane", "Lennox", "Goodman", "Rheem", "York", "Bryant", "Daikin", "Mitsubishi", "Ruud"];
return (
<section data-webild-section="partners" id="partners" className="relative w-full py-12 bg-background overflow-hidden border-y border-foreground/5">
<div className="w-content-width mx-auto mb-8">
<div className="w-content-width mx-auto mb-8 flex flex-col items-center">
<ImageOrVideo
imageSrc="https://storage.googleapis.com/webild/users/user_3FsKwY1z0whbLqu4cWcJMuckrXb/uploaded-1782936586781-6mty6kt1.png"
className="w-full max-w-4xl h-auto mb-12 rounded-xl shadow-2xl"
/>
<p className="text-center text-sm font-semibold text-accent uppercase tracking-wider">
Trusted by industry leaders
</p>
@@ -21,4 +26,4 @@ export default function PartnersSection() {
</LoopCarousel>
</section>
);
}
}