Get in touch anddrive real business growth

TAKE THE NEXT STEP

Transform the way you work

Whether you’re curious about AI or looking to discuss bespoke AI training courses for your teams, we’re just a click away.

Simply fill in the form to find out how you can: 

  • Increase productivity
  • Develop AI skills 
  • Connect and grow your business
  • Demonstrate ROI for AI tools
  • Turn fear into curiosity

Get in touch today!

Book a call

Send us a message

Thank you for getting in touch. One of the team will be in contact shortly.
Oops! Something went wrong while submitting the form.
// This will run on every page load window.addEventListener('load', function() { // Log which page we're on console.log('Page URL:', window.location.href); // Check if Calendly exists console.log('Calendly loaded:', typeof Calendly !== 'undefined'); // Find all Calendly buttons on the page const calendlyButtons = document.querySelectorAll('[data-calendly]'); console.log('Found Calendly buttons:', calendlyButtons.length); // Log each button's URL calendlyButtons.forEach(button => { console.log('Button URL:', button.getAttribute('data-calendly')); }); document.addEventListener('click', function(e) { const calendarLink = e.target.closest('[data-calendly]'); if (calendarLink) { console.log('Button clicked!'); e.preventDefault(); const calendlyUrl = calendarLink.getAttribute('data-calendly'); console.log('Trying to open:', calendlyUrl); Calendly.initPopupWidget({url: calendlyUrl}); return false; } }); });