CoolFace
Apppublic

Sarag679/tiny-dreams-under-palms

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
script.js11 linesDownload Raw Back to root
1// Smooth scrolling for anchor links2document.querySelectorAll('a[href^="#"]').forEach(anchor => {3    anchor.addEventListener('click', function (e) {4        e.preventDefault();5        document.querySelector(this.getAttribute('href')).scrollIntoView({6            behavior: 'smooth'7        });8    });9});10 11// Mobile menu functionality will be added here in components/navbar.js