huge changes

This commit is contained in:
Supertiger
2025-08-01 18:04:20 +01:00
parent 441836bdd3
commit 382f61a615
25 changed files with 9699 additions and 17 deletions

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

@@ -0,0 +1,8 @@
import "./root.css";
const appElement = document.getElementById("app")!;
export const createRootPage = async () => {
appElement.innerHTML = `
<iframe id="waybar-iframe" src="/waybar"></iframe>
`;
};