|
1 | 1 | import reflex as rx |
2 | 2 | from pcweb.components.icons.icons import get_icon |
3 | 3 | from pcweb.constants import GITHUB_URL, TWITTER_URL, DISCORD_URL |
4 | | -from pcweb.pages.docs import getting_started, hosting |
| 4 | +from pcweb.pages.docs import getting_started |
| 5 | +from pcweb.pages.hosting.hosting import hosting_landing |
5 | 6 | from pcweb.pages.docs.library import library |
6 | 7 | from pcweb.pages.blog import blogs |
7 | 8 | from pcweb.pages.gallery import gallery |
| 9 | +from pcweb.pages.framework.framework import framework |
8 | 10 | from reflex.style import toggle_color_mode |
9 | 11 |
|
10 | 12 |
|
@@ -72,8 +74,9 @@ def navbar_sidebar_drawer(trigger) -> rx.Component: |
72 | 74 | drawer_item("Blog", blogs.path, "blog"), |
73 | 75 | drawer_item("Case Studies", "/customers", "customers"), |
74 | 76 | drawer_item("Components", library.path, "library"), |
75 | | - drawer_item("Hosting", hosting.deploy_quick_start.path, "hosting"), |
76 | | - drawer_item("Pricing", "/pricing", "hosting"), |
| 77 | + drawer_item("Open Source", framework.path, "open-source"), |
| 78 | + drawer_item("Cloud", hosting_landing.path, "hosting"), |
| 79 | + drawer_item("Pricing", "/pricing", "pricing"), |
77 | 80 | drawer_socials(), |
78 | 81 | rx.el.button( |
79 | 82 | rx.color_mode.icon( |
|
0 commit comments