BLUR-14 about page changes

This commit is contained in:
markrz12 2023-11-27 20:57:03 +01:00
parent f854b6d970
commit fbc109a42a
2 changed files with 14 additions and 20 deletions

17
.gitignore vendored
View File

@ -1,11 +1,6 @@
*.db
*.py[cod]
.web
__pycache__/
.web/
.idea/
*.db
*.py[cod]
.idea/
.web
.web/
__pycache__/

View File

@ -2,15 +2,6 @@ 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.markdown(about_authors_text),
),
about_authors_text = """
# O Autorach
@ -48,3 +39,11 @@ stronę kontaktową. Jesteśmy otwarci na współpracę i ciekawe pomysły!
Dziękujemy za korzystanie z **BlurMe**!
"""
@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.markdown(about_authors_text),
)