Initial Commit

This commit is contained in:
Supertiger
2025-08-01 11:08:32 +01:00
commit 441836bdd3
9 changed files with 703 additions and 0 deletions

5
src/routes/root.ts Normal file
View File

@@ -0,0 +1,5 @@
const appElement = document.getElementById("app")!;
export const createRootPage = async () => {
appElement.innerHTML = "test";
};

5
src/routes/waybar.ts Normal file
View File

@@ -0,0 +1,5 @@
const appElement = document.getElementById("app")!;
export const createWaybarPage = async () => {
appElement.innerHTML = "test";
};