Integration

Add a Waitlist to Your Next.js App - Launch Queue

Integrate a waitlist signup form into your Next.js application using the built-in Script component. Works with both the App Router and Pages Router.

Get Started Free

Embed Code

component.jsx
import Script from 'next/script'

export default function WaitlistPage() {
  return (
    <div>
      <h1>Join Our Waitlist</h1>
      <div
        data-lq-widget="signup"
        data-api-key="YOUR_API_KEY"
        data-project-id="YOUR_PROJECT_ID"
        data-primary-color="#3B82F6"
        data-button-text="Join the Waitlist"
      ></div>
      <Script
        src="https://launchqueue.app/widget.js"
        strategy="lazyOnload"
      />
    </div>
  )
}

Step-by-step Setup

1

Add the widget script to your layout or page

Use the Next.js Script component to load the Launch Queue widget script. The "lazyOnload" strategy ensures it does not block page rendering. For the App Router, add it in your layout.tsx or directly in the page component.

jsx
// app/layout.tsx (App Router)
import Script from 'next/script'

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="en">
      <body>
        {children}
        <Script
          src="https://launchqueue.app/widget.js"
          strategy="lazyOnload"
        />
      </body>
    </html>
  )
}
2

Add the widget div to your page

Place the widget div wherever you want the waitlist form to appear. Replace YOUR_API_KEY and YOUR_PROJECT_ID with the values from your Launch Queue dashboard.

jsx
// app/waitlist/page.tsx
export default function WaitlistPage() {
  return (
    <section className="max-w-md mx-auto py-16">
      <h1 className="text-3xl font-bold mb-6">
        Join Our Waitlist
      </h1>
      <div
        data-lq-widget="signup"
        data-api-key="YOUR_API_KEY"
        data-project-id="YOUR_PROJECT_ID"
        data-primary-color="#3B82F6"
        data-button-text="Join the Waitlist"
        data-collect-name="true"
      ></div>
    </section>
  )
}
3

Build and deploy

Run your Next.js development server to test the widget locally, then deploy to Vercel or your preferred hosting platform. The widget will work in both development and production environments.

bash
# Test locally
npm run dev

# Build for production
npm run build

Why use Launch Queue with Next.js

  • Uses the Next.js Script component for optimized, non-blocking script loading
  • Works with both the App Router and Pages Router in Next.js 13+
  • Compatible with server-side rendering (SSR) and static site generation (SSG)
  • Supports TypeScript projects without additional type definitions
  • Deploys seamlessly to Vercel, Netlify, or any Node.js hosting platform

Frequently Asked Questions

Add a waitlist to your Next.js site

Start your 14-day free trial. No credit card required.

Start Free Trial