ublue-forge/anvil/nicegui/pages/home.py

11 lines
258 B
Python
Raw Normal View History

2024-05-06 18:16:52 +03:00
from nicegui import ui
import os
2024-05-06 18:16:52 +03:00
def content() -> None:
project_root = os.environ['NICEGUI_DIR']
2024-05-06 18:16:52 +03:00
ui.label("Work in progress...").classes("text-h6")
ui.image(project_root + "/pages/assets/work-in-progress.png").classes(
2024-05-06 18:16:52 +03:00
"w-[200%]"
)