1: UI works, receiving location updates

This commit is contained in:
metacryst
2025-10-31 19:51:09 -05:00
commit 152faaecee
13 changed files with 1253 additions and 0 deletions

12
ui/app/components/Home.js Normal file
View File

@@ -0,0 +1,12 @@
class Home extends Shadow {
render() {
ZStack(() => {
})
.backgroundColor("#aebdff")
.display("block")
.width(100, vw).height(100, vh)
}
}
registerShadow(Home)

12
ui/app/index.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Blockcatcher</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/_/icons/logo.svg">
<script src="/_/code/quill.js"></script>
<script type="module" src="/index.js"></script>
</head>
<body style="margin: 0px">
</body>
</html>

2
ui/app/index.js Normal file
View File

@@ -0,0 +1,2 @@
import "./components/Home.js"
Home()