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() {
+