diff --git a/app/page.tsx b/app/page.tsx index 237bd3ad..b9c69ca4 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -57,6 +57,21 @@ const LatestContentPreview = dynamic(() => import("@/components/home/LatestConte ssr: false }); +// New: SponsorsSection on Home +const SponsorsSection = dynamic(() => import("@/components/home/SponsorsSection").then(mod => ({ default: mod.SponsorsSection })), { + loading: () => ( +
+
+
+
+
+
+
+
+ ), + ssr: false +}); + const Footer = dynamic(() => import("@/components/footer"), { loading: () => (