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.
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 >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>
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>
Handy for anyone reviewing a page:
One shared backend, CORS-open, namespaced by project. You don't re-host per client.