BlurMe/blurme/pages/settings.py

23 lines
520 B
Python
Raw Normal View History

"""The settings page."""
from blurme.templates import template
import reflex as rx
@template(route="/settings", title="Settings")
def settings() -> rx.Component:
"""The settings page.
Returns:
The UI for the settings page.
"""
return rx.vstack(
2023-11-17 16:33:22 +01:00
rx.heading("BlurMe", font_size="3em"),
rx.text("Dodaj zdjęcia, które chcesz zanonimizować!"),
)
2023-11-17 16:33:22 +01:00
# rx.text(
# "You can edit this page in ",
# rx.code("{your_app}/pages/settings.py"),
# ),