Flatlogic Bot 9511faa967 HalalReels
2025-11-23 16:26:48 +00:00

11 lines
397 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
const ctaButton = document.querySelector('#cta-button');
const createSection = document.querySelector('#create');
if (ctaButton && createSection) {
ctaButton.addEventListener('click', function(e) {
e.preventDefault();
createSection.scrollIntoView({ behavior: 'smooth' });
});
}
});