Nedivut

A live giving-campaign dashboard for shuls and small nonprofits — teams, goal thermometer, dedications — run entirely from a Google Sheet and embedded on your own website.

This is the demo campaign — live, reading a Google Sheet right now, embedded on this page with the exact snippet below.

Open full page · projector mode · sheet check

Embed on your site

Paste this into any HTML block (Wix, Squarespace, WordPress). The frame sizes itself to the content — no scrollbars, no clipping. It’s the same snippet powering the demo above.

<iframe
  src="https://www.nedivut.app/c/your-campaign"
  id="nedivut-frame"
  title="Giving campaign"
  style="width:100%;border:0;min-height:600px;"
  loading="lazy"
></iframe>
<script>
  window.addEventListener("message", function (e) {
    var f = document.getElementById("nedivut-frame");
    if (f && e.source === f.contentWindow && e.data && e.data.type === "nedivut:height") {
      f.style.height = e.data.height + "px";
    }
  });
</script>

How it works

  1. Your campaign lives in a Google Sheet (we give you a template).
  2. You add teams and record donations as rows — that’s the whole admin.
  3. The dashboard updates itself within about a minute.