home.py 625 B

12345678910111213141516171819202122232425262728
  1. """The home page of the app."""
  2. import reflex as rx
  3. from ..styles import *
  4. def home_page() -> rx.Component:
  5. """The UI for the home page.
  6. Returns:
  7. rx.Component: The UI for the home page.
  8. """
  9. return rx.box(
  10. rx.vstack(
  11. rx.heading(
  12. "Home",
  13. font_size="3em",
  14. ),
  15. rx.text(
  16. "Welcome to Reflex!",
  17. ),
  18. rx.text(
  19. "You can use this template to get started with Reflex.",
  20. ),
  21. style=template_content_style,
  22. ),
  23. style=template_page_style,
  24. )