INTEGRATIONS

Next.js Integration

Next.js applications can efficiently render script payloads without blocking initial render. Utilize native next/script tag components.

import Script from 'next/script'

export default function RootLayout({ children }) {
  return (
    <html lang="en">
      <body>
        {children}
        <Script
          src="https://cdn.mimo.io/seline.js"
          data-token="YOUR-CLIENT-TOKEN"
          strategy="afterInteractive"
        />
      </body>
    </html>
  )
}

Can't find what you're looking for?

Our support team is always here to help you get the most out of Mimo Forms. Reach out to us anytime!

Contact Support
Next.js Integration | Mimo Forms Documentation