import dynamic from "next/dynamic"; const DynamicIframe = dynamic(() => import("@/components/DynamicIframe"), { ssr: false, // Ensures it runs only on the client }); const Page = () => { const htmlContent = `
This is dynamic content.