refactor: update homepage section order with cases section

This commit is contained in:
张翔
2026-02-26 21:26:26 +08:00
parent f0e147eba8
commit cb512bb13a
+9
View File
@@ -22,6 +22,14 @@ const ProductsSection = dynamic(
} }
); );
const CasesSection = dynamic(
() => import('@/components/sections/cases-section').then(mod => ({ default: mod.CasesSection })),
{
loading: () => <SectionSkeleton />,
ssr: true
}
);
const AboutSection = dynamic( const AboutSection = dynamic(
() => import('@/components/sections/about-section').then(mod => ({ default: mod.AboutSection })), () => import('@/components/sections/about-section').then(mod => ({ default: mod.AboutSection })),
{ {
@@ -53,6 +61,7 @@ export default function HomePage() {
<HeroSection /> <HeroSection />
<ServicesSection /> <ServicesSection />
<ProductsSection /> <ProductsSection />
<CasesSection />
<AboutSection /> <AboutSection />
<NewsSection /> <NewsSection />
<ContactSection /> <ContactSection />