import React, { lazy, Suspense } from 'react' import { createRoot } from 'react-dom/client' // Sub-section components — lazy-loaded so only the hero blocks the initial bundle import HomeHero from './HomeHero' const HomeTrending = lazy(() => import('./HomeTrending')) const HomeFresh = lazy(() => import('./HomeFresh')) const HomeTags = lazy(() => import('./HomeTags')) const HomeCreators = lazy(() => import('./HomeCreators')) const HomeNews = lazy(() => import('./HomeNews')) function SectionFallback() { return (
) } function HomePage({ hero, trending, fresh, tags, creators, news }) { return (