top of page

Calendar isn’t available yet

You’ll see a calendar here with available times once a service is added to it.

bottom of page
function isCalendlyEvent(e) { return e.origin === "https://calendly.com" && e.data.event?.startsWith("calendly."); } window.addEventListener("message", function(e) { if (isCalendlyEvent(e)) { console.log("Calendly Event:", e.data.event); console.log("Event Details:", e.data.payload); } });