ComponentsFeedback Widget

FeedbackWidget

FeedbackWidget Preview

page.tsx
import FeedbackWidget from "@/components/marketing/FeedbackWidget";

The FeedbackWidget component is used to collect feedback from users. Currently, the component is used to either collect feedback from users or allow them to report a bug.

These can be enabled / disabled in the app.config.ts file under feedback.widgets.

app.config.ts
    feedback: {
        widgets: {
            reportBug: {
                isEnabled: true,
                formUrl: "https://tally.so/r/bug-report",
            },
            shareFeedback: {
                isEnabled: true, // controls the FeedbackWidget.tsx in bottom right
                formUrl: "https://tally.so/r/general-feedback",
            },
        },
        ...
    },