import { notFound } from "next/navigation"; import { IS_FULL_SYSTEM_BUILD } from "@/lib/runtime/buildVariant"; export default async function FunnelBuilderPage() { if (!IS_FULL_SYSTEM_BUILD) { notFound(); } const { default: FunnelBuilderPageClient } = await import( "./FunnelBuilderPageClient" ); return ; }