Initial Release

This commit is contained in:
2026-05-24 21:58:23 -07:00
commit 0a782e0096
209 changed files with 11657 additions and 0 deletions
@@ -0,0 +1,8 @@
// Displays a birthday pancake beside the 'Active since May 13th, 2021'
// on the Homepage when it's suzzy games birthday :3
(() => {
const t = new Date()
if (t.getMonth() === 4 && t.getDate() === 13) {
document.querySelector('#birthday')!.textContent += '🥞'
}
})()