index.py 452 B

123456789101112131415161718
  1. """The home page of the app."""
  2. from boppersbizza import styles
  3. from boppersbizza.templates import template
  4. import reflex as rx
  5. @template(route="/", title="Home", image="/github.svg")
  6. def index() -> rx.Component:
  7. """The home page.
  8. Returns:
  9. The UI for the home page.
  10. """
  11. with open("README.md", encoding="utf-8") as readme:
  12. content = readme.read()
  13. return rx.markdown(content, component_map=styles.markdown_style)