import dynamic from "next/dynamic"; import ExploreCreators from "./_sections/ExploreCreators"; import UpcomingEvents from "./_sections/UpcomingEvents"; import LongFormContentSection from "./_sections/LongFormContent"; import CreateEvents from "./_sections/CreateEvents"; const LiveStreamingSection = dynamic( () => import("./_sections/LiveStreaming"), { ssr: false, }, ); const FeaturedListsSection = dynamic( () => import("./_sections/FeaturedLists"), { ssr: false, }, ); const NewEventButton = dynamic(() => import("./_components/NewEventButton"), { ssr: false, }); export default function Page() { return (
); }