BryKnight's picture
Create a fitness gym website with motivational hero video, class schedule timetable, trainer profiles with specializations, membership pricing comparison, transformation gallery, facilities photos, and trial class signup form.
d90f038 verified
raw
history blame contribute delete
734 Bytes
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Form submission handler
document.querySelector('form')?.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your interest! We will contact you shortly to schedule your free class.');
this.reset();
});
// Initialize Feather Icons
document.addEventListener('DOMContentLoaded', function() {
feather.replace();
});
// Mobile menu toggle (will be implemented in navbar component)