Add user feedback collection to your Next.js app with a simple script tag. Works with App Router and Pages Router.
Copy and paste. That's the entire setup.
import Script from 'next/script'
// Add to your app/layout.tsx
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>
{children}
<Script
src="https://feedinbox.com/widget.js"
data-project-key="your_project_key"
strategy="lazyOnload"
/>
</body>
</html>
);
}Find your app/layout.tsx file
Add a single Script tag with your project key
<Script src="https://feedinbox.com/widget.js" data-project-key="your_key" strategy="lazyOnload" />The widget will appear on all your pages
Feedback goes to your inbox, not another dashboard
Tiny script, no impact on your site's performance
Copy, paste, done. Start collecting feedback
Get started without a credit card
Free tier available. Setup takes under 2 minutes.
No credit card required • Free tier available