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