mirror of
https://github.com/ublue-os/forge.git
synced 2025-04-08 07:53:43 +03:00
11 lines
258 B
Python
11 lines
258 B
Python
from nicegui import ui
|
|
import os
|
|
|
|
|
|
def content() -> None:
|
|
project_root = os.environ['NICEGUI_DIR']
|
|
ui.label("Work in progress...").classes("text-h6")
|
|
ui.image(project_root + "/pages/assets/work-in-progress.png").classes(
|
|
"w-[200%]"
|
|
)
|