High Performance Tennis Training
Join our elite training program and take your game to the next level!
function loadNav() {
fetch("nav.html")
.then(response => response.text())
.then(data => {
document.getElementById("nav-placeholder").innerHTML = data;
});
}
loadNav(); // Load navigation dynamically
function toggleMenu() {
document.querySelector('.nav-links').classList.toggle('show');
}