Initial Commit

This commit is contained in:
BloxerHD 2025-06-06 00:16:40 +01:00
commit c1c292c437
7 changed files with 261 additions and 0 deletions

11
guides/guides.js Normal file
View file

@ -0,0 +1,11 @@
const guideContents = document.querySelectorAll(".guide-content");
function changeGuide(newID) {
guideContents.forEach(content => {
if (content.id == newID) {
content.style.display = "block";
} else {
content.style.display = "none";
}
})
}