From cb512bb13aa679117f30e2ecb1433cb7e96aa5d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Thu, 26 Feb 2026 21:26:26 +0800 Subject: [PATCH] refactor: update homepage section order with cases section --- src/app/(marketing)/page.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/app/(marketing)/page.tsx b/src/app/(marketing)/page.tsx index 364520a..7653e3b 100644 --- a/src/app/(marketing)/page.tsx +++ b/src/app/(marketing)/page.tsx @@ -22,6 +22,14 @@ const ProductsSection = dynamic( } ); +const CasesSection = dynamic( + () => import('@/components/sections/cases-section').then(mod => ({ default: mod.CasesSection })), + { + loading: () => , + ssr: true + } +); + const AboutSection = dynamic( () => import('@/components/sections/about-section').then(mod => ({ default: mod.AboutSection })), { @@ -53,6 +61,7 @@ export default function HomePage() { +