Deploy: Complete TekDek documentation website with all content pages, CSS, and infrastructure

This commit is contained in:
ParzivalTD
2026-04-12 11:20:19 -04:00
parent 1be079d7a7
commit d8da25107e
29 changed files with 2627 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/**
* TekDek - Main JS
*/
(function() {
'use strict';
// Mobile menu toggle
const toggle = document.querySelector('.menu-toggle');
const nav = document.querySelector('.main-nav');
if (toggle && nav) {
toggle.addEventListener('click', function() {
const open = nav.classList.toggle('open');
toggle.setAttribute('aria-expanded', open);
});
}
})();