more pages

This commit is contained in:
2025-06-04 20:08:25 +03:00
parent 341c47e715
commit 06d43a871c
13 changed files with 770 additions and 13 deletions
+3
View File
@@ -0,0 +1,3 @@
const emojis = ['😊', '😎', '🤓', '😄', '😉', '😋', '😜', '🤪', '😇', '🥳'];
const randomEmoji = emojis[Math.floor(Math.random() * emojis.length)];
document.getElementById('random-emoji').textContent = randomEmoji;