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

Hello from Iframe

This is dynamic content.

`; return ; }; export default Page;