improved frontend, started csv upload endpoint

This commit is contained in:
metacryst
2026-01-09 13:53:41 -06:00
parent 620d50cad7
commit 75cbcbb879
21 changed files with 357 additions and 840 deletions

View File

@@ -0,0 +1,25 @@
class MainPanel extends Shadow {
render() {
ZStack(() => {
input("Search", "70vw")
.marginLeft(5, em)
.marginTop(2, em)
.paddingVertical(0.5, em)
.paddingHorizontal(1, em)
.border("none")
.background("rgb(146, 160, 219)")
.outline("none")
switch(window.location.pathname) {
case "/":
LocationList()
break;
}
})
.width(100, "%")
.height(100, vh)
.backgroundColor("rgb(174, 189, 255)")
}
}
register(MainPanel)