🎨 improved structure massively

🐛 switched mesavirep -> dc.dstn
 added bio in card
This commit is contained in:
lunarydess
2024-03-28 02:24:47 +01:00
parent 839c5c1877
commit 47980c131f
11 changed files with 912 additions and 717 deletions

16
js/init.js Normal file
View File

@@ -0,0 +1,16 @@
// import { insertFileContentIn } from "./util.js";
import * as themes from "./themes.js";
import * as shaders from "./shaders.js";
import * as cards from "./cards.js";
async function init() {
document.documentElement.style.setProperty("--background-color", "#000000");
themes.init();
shaders.init();
cards.init();
// insertFileContentIn("content", "home");
}
init();