2 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

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 />
</>
);
}
}