BlurMe/blurme/components/about.py

9 lines
257 B
Python
Raw Normal View History

2023-11-21 17:09:20 +01:00
import reflex as rx
def about_content() -> rx.Component:
return rx.box(
rx.h1("About BlurMe"),
rx.p("BlurMe is an awesome app that blurs faces and license plates on photos."),
# Dodaj więcej treści o aplikacji BlurMe...
)