Hacker Mode
`
animals: `Animal Gallery
Place holde
`,
references: `References
Link to playlist (in case you were interested) https://soundcloud.com/bob-hoe-518785977/sets/hbdnadia
`
};
document.querySelectorAll("nav a").forEach(link => {
link.addEventListener("click", e => {
e.preventDefault(); // prevent default anchor behavior
const page = link.getAttribute("data-page");
pageContent.innerHTML = pages[page] || "404
Page not found.
";
window.scrollTo({ top: 0, behavior: "smooth" });
});
});
// Add this at the end of your