diff --git a/index.html b/index.html
index b325747..ea1726b 100644
--- a/index.html
+++ b/index.html
@@ -590,7 +590,7 @@
- Home
+
+
Discover
Studio
WebXR
@@ -870,10 +869,10 @@
const navBtn = document.getElementById('navbtn');
const links = document.getElementById('links');
let isOpen = false;
-
+
navBtn.addEventListener('click', () => {
isOpen = !isOpen;
-
+
// First make the menu visible if it's being opened
if (isOpen) {
links.style.display = 'flex';
@@ -888,9 +887,9 @@
links.style.display = 'none';
}, 300); // Match this with your transition duration
}
-
+
// Change hamburger icon
- navBtn.innerHTML = isOpen
+ navBtn.innerHTML = isOpen
? ''
: '';
});