Switch to version 14: modified src/pages/HomePage.tsx

This commit is contained in:
2026-07-01 20:13:58 +00:00
parent a9a34356b2
commit 8a07622743

View File

@@ -14,17 +14,26 @@ 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 (
<>
<HeroSection />
<AboutSection />
<ServicesSection />
<MetricsSection />
<TeamSection />
<ReviewsSection />
<FaqSection />
<ContactSection />
<>
<HeroSection />
<PartnersSection />
<AboutSection />
<ServicesSection />
<MetricsSection />
<TeamSection />
<ReviewsSection />
<FaqSection />
<ContactSection />
</>
);
}
}