BlurMe/blurme/pages/about.py

17 lines
427 B
Python

"""The dashboard page."""
from blurme.templates import template
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"),
),
)