wip - nicegui

This commit is contained in:
Stephan Lüscher 2024-05-06 15:16:52 +00:00
parent c3ed45a21b
commit 85b0b3fdc5
No known key found for this signature in database
GPG key ID: 445779060FF3D3CF
39 changed files with 2748 additions and 896 deletions

View file

@ -0,0 +1,10 @@
from nicegui import ui
from utils import get_project_root
def content() -> None:
project_root = str(get_project_root())
ui.label("Work in progress...").classes("text-h6")
ui.image(project_root + "/nicegui/pages/assets/work-in-progress.png").classes(
"w-[200%]"
)