Enterprise Integration Hub

Integrate Unnati OS with Any Custom Stack

Comprehensive guides to embed high-velocity inquiry widgets, route edge webhooks, and sync leads with Astro, Next.js, and WordPress.

1. Universal 1-Line Embed (Astro, HTML, WordPress)

<!-- Add before </body> tag on any website -->
<script src="https://unnati-pro.pages.dev/widget.js" data-site="yourdomain.com" async></script>

2. Next.js App Router Embed (app/layout.tsx)

import Script from 'next/script';

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <body>
        {children}
        <Script src="https://unnati-pro.pages.dev/widget.js" strategy="lazyOnload" data-site="yourdomain.com" />
      </body>
    </html>
  );
}