BlurMe/blurme/pages/about.py

17 lines
427 B
Python
Raw Normal View History

"""The dashboard page."""
from blurme.templates import template
2023-11-21 17:09:20 +01:00
import reflex as rx
@template(route="/about", title="O autorach", image = "/about-icon.png")
def about() -> rx.Component:
return rx.vstack(
rx.heading("O autorach", font_size="3em"),
rx.text("Welcome to Reflex!"),
rx.text(
"You can edit this page in ",
rx.code("{your_app}/pages/about.py"),
),
)