UserJot Feedback

UserJot is a lightweight user-feedback platform that gives your site a public feedback board, roadmap, and changelog. Visitors and buyers can request features, report bugs, and upvote ideas — so you always know what to build next. No SDK is required: you link to (or embed) your hosted board.

Last updated: 2026-07-04

Create a UserJot Workspace

Sign up at userjot.com and create a workspace — you instantly get a hosted board at `your-workspace.userjot.com` with Feature Requests and Bugs boards, plus Roadmap and Changelog pages out of the box. There is nothing to install in the template until you want to surface the board on your site.

Embed the Board in a Page

Prefer to keep visitors on your domain? Create a /feedback page and embed the board in an iframe. The board is responsive, so it works inside the template layout on mobile and desktop.

src/pages/feedback.astro
---
import Layout from "../layout/Layout.astro";
---

<Layout title="Feedback">
  <section class="max-w-5xl mx-auto px-4 py-16">
    <h1 class="text-3xl font-bold mb-6">Feedback & Feature Requests</h1>
    <iframe
      src="https://your-workspace.userjot.com"
      title="Feedback board"
      class="w-full rounded-xl border border-zinc-200"
      style="height: 80vh;"
      loading="lazy"
    ></iframe>
  </section>
</Layout>

Close the Loop with Roadmap & Changelog

Move requests through statuses (e.g. Planned, In Progress, Shipped) and they appear on your public roadmap automatically. When you ship, publish a changelog entry — everyone who upvoted the request gets notified, which quietly turns feedback into repeat visits.