This commit is contained in:
metacryst
2025-06-22 18:09:19 -05:00
parent a695368462
commit 760563167c
24 changed files with 1110 additions and 1 deletions

18
ui/pages/[].js Normal file
View File

@@ -0,0 +1,18 @@
css(`
home- {
margin: 0px;
position: absolute;
left: 0px;
top: 0px;
width: 100vw;
height: 100vh;
background-color: ${Colors.base};
font-family: system-ui;
}
`)
class Home extends Page {
render() {
Header()
}
}