BlurMe/blurme/components/about.py
2023-11-21 17:09:20 +01:00

9 lines
257 B
Python

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...
)