BlurMe/blurme/pages/dashboard.py

22 lines
525 B
Python
Raw Normal View History

"""The dashboard page."""
from blurme.templates import template
import reflex as rx
2023-11-22 15:54:26 +01:00
@template(route="/dashboard", title="Kontakt", image = "/contact-icon.png")
def dashboard() -> rx.Component:
"""The dashboard page.
Returns:
The UI for the dashboard page.
"""
return rx.vstack(
rx.heading("Dashboard", font_size="3em"),
rx.text("Welcome to Reflex!"),
rx.text(
"You can edit this page in ",
rx.code("{your_app}/pages/dashboard.py"),
),
)