new project structure, faq adj, review fix

This commit is contained in:
2025-09-28 21:15:56 -04:00
parent 5d07776051
commit 6c05581493
19 changed files with 43 additions and 30 deletions
+8
View File
@@ -0,0 +1,8 @@
function toggleDropdown(headerClicked) {
let body = headerClicked.nextElementSibling;
let arrow = headerClicked.children[1];
headerClicked.classList.toggle("open");
body.classList.toggle("open");
arrow.classList.toggle("open");
}