Step-by-step instructions for adding SALESCFG to your website.
Paste the embed code where you want the configurator to appear:
<!-- SALESCFG Configurator Embed -->
<div id="salescfg-configurator"></div>
<script>
(function() {
var script = document.createElement('script');
script.src = 'https://your-domain.com/embed.js';
script.setAttribute('data-public-key', 'YOUR_PUBLIC_KEY');
script.async = true;
document.body.appendChild(script);
})();
</script>Replace YOUR_PUBLIC_KEY with your actual public key from the dashboard.
You can style the container div to control sizing and positioning:
<div id="salescfg-configurator"
style="max-width: 1200px; margin: 0 auto;">
</div>