Client review system

Gizmonote

Proxy's live, shared point-and-note layer for design review. Clients annotate any page in the browser; notes save instantly to one shared backend and show up for everyone. One script tag drops it onto any site… Astro, WordPress, a live client build, or a portal.

TRY THE SANDBOX > INSTALL SNIPPET ROADMAP

The review index — one gallery for concept reviews

A shared, private gallery of every concept and version in a project. Clients browse the whole set in one place, open any page, and leave notes with the live layer — each card shows a thumbnail, a live comment count, and a favorite star. It's data-driven: list a project's pages in review/projects.json and the grid builds itself (access is per-project, password-gated).

OPEN THE REVIEW INDEX >

Add it to a live site

Paste this once before </body>. It stays inert (zero load / SEO impact) until someone appends #gizmonote to the URL; then the review layer wakes up.

<script>
  // namespaces this site's notes (pick a short slug)
  window.GIZMONOTE = { project: 'your-project' };
</script>
<script src="https://gizmonote.madebyproxy.com/gizmonote-loader.js" defer></script>

Always-on (a review build)

For a staging build where every visitor should see the layer, load the widget directly and set the note bucket for that page:

<script>
  window.GIZMONOTE = {
    project: 'your-project',
    page: 'home',
    api: 'https://gizmonote.madebyproxy.com'
  };
</script>
<script src="https://gizmonote.madebyproxy.com/v1/gizmonote.js"></script>

Shortcuts

Handy for anyone reviewing a page:

Endpoints

One shared backend, CORS-open, namespaced by project. You don't re-host per client.