# feedbackfun feedbackfun is an embeddable feedback and roadmap widget. Drop one script tag into any website — users can submit feature requests, bug reports, and vote on your product roadmap by clicking anywhere on the page. You manage everything from the feedbackfun dashboard. ## Quick integration (30 seconds) Replace YOUR_API_KEY with your key from https://feedbackfun.com/dashboard/settings ### HTML / any site ```html ``` Add this once, anywhere in . A floating button appears bottom-right. ### Next.js (App Router) ```tsx // app/layout.tsx import Script from 'next/script'; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ``` ## Localhost / development testing The widget validates the domain against your project. To test locally, add your production domain as dev-domain: ```html ``` ## Where to get your API key 1. Sign in at https://feedbackfun.com 2. Create a project (enter your site's domain) 3. Your API key appears at https://feedbackfun.com/dashboard/settings 4. The dashboard also generates ready-to-copy code for Next.js, React, Vue, and HTML ## Support - Dashboard: https://feedbackfun.com/dashboard - Setup guide: https://feedbackfun.com/dashboard/settings