overhauled old theme

This commit is contained in:
sundae 2025-10-14 19:40:29 +03:00
parent f18a342ae5
commit fb24c6a302
No known key found for this signature in database
82 changed files with 1378 additions and 1371 deletions

View file

@ -1,6 +1,8 @@
import { audioPath } from './path.js'
import { audioPath } from "./path.js";
let bob = document.getElementById("bob");
let help = document.createElement("audio");
help.src = `${audioPath}bob.ogg`;
help.loop = true;
bob.appendChild(help);