This subdomain hosts the embeddable VoiceChart widget — the same on-device, per-tooth dictation engine as app.voicechart.io, compacted into a panel that mounts into a host app (e.g. the odontOS “Quick Note” card) with one script tag. Below is a live instance.
<!-- host: odontOS Quick Note card --> <div id="quicknote"></div> <script src="https://widget.voicechart.io/voicechart-widget.js"></script> <script> VoiceChart.mount('#quicknote', { patient: 'Isabella Moreau', patNum: '10428', theme: { accent: '#8fb4ff' }, onNote: ({ plainText }) => save(plainText), }); </script>