begin to configure site - need to get rid of extra stuff still...

This commit is contained in:
2025-04-16 14:37:57 -08:00
parent 60b4202649
commit 720de92caf
30 changed files with 866 additions and 325 deletions

10
static/js/word-slider.js Normal file
View File

@@ -0,0 +1,10 @@
const words = document.querySelectorAll('.word-slider div');
let index = 0;
setInterval(() => {
words[index].classList.remove('visible');
words[index].classList.add('invisible');
index = (index + 1) % words.length;
words[index].classList.remove('invisible');
words[index].classList.add('visible');
}, 2000); // change every 2 seconds