|
1 | 1 | import reflex as rx |
2 | | -from pcweb.constants import REFLEX_CLOUD_URL |
| 2 | + |
| 3 | +from pcweb.constants import REFLEX_AI_BUILDER |
3 | 4 |
|
4 | 5 |
|
5 | 6 | def glow() -> rx.Component: |
@@ -27,28 +28,29 @@ def hosting_banner() -> rx.Component: |
27 | 28 | rx.box( |
28 | 29 | rx.box( |
29 | 30 | rx.text( |
30 | | - "Reflex Cloud - ", |
| 31 | + "Reflex Build - ", |
31 | 32 | rx.el.span( |
32 | | - "Fast, secure & scalable hosting. One command to deploy.", |
| 33 | + "Build internal apps with AI.", |
33 | 34 | # class_name="text-slate-12 font-medium text-sm", |
34 | 35 | class_name="hidden md:inline-block text-slate-12 font-medium text-sm", |
35 | 36 | ), |
36 | | - rx.el.span( |
37 | | - "Fast & scalable hosting.", |
38 | | - # class_name="text-slate-12 font-medium text-sm", |
39 | | - class_name="inline-block md:hidden text-slate-12 font-medium text-sm", |
40 | | - ), |
| 37 | + # ... keep this for mobile view if/when needed |
| 38 | + # rx.el.span( |
| 39 | + # "Build internal apps with AI.", |
| 40 | + # # class_name="text-slate-12 font-medium text-sm", |
| 41 | + # class_name="inline-block md:hidden text-slate-12 font-medium text-sm", |
| 42 | + # ), |
41 | 43 | class_name="text-slate-12 font-semibold text-sm z-[1]", |
42 | 44 | ), |
43 | 45 | rx.el.button( |
44 | | - "Live Now!", |
| 46 | + "Try for Free!", |
45 | 47 | class_name="hidden md:inline-block text-green-11 h-[1.5rem] rounded-md bg-green-4 px-1.5 text-sm font-semibold z-[1] items-center justify-center shrink-0", |
46 | 48 | ), |
47 | 49 | class_name="flex items-center gap-4", |
48 | 50 | ), |
49 | 51 | ), |
50 | 52 | glow(), |
51 | | - href=REFLEX_CLOUD_URL, |
| 53 | + href=REFLEX_AI_BUILDER, |
52 | 54 | underline="none", |
53 | 55 | is_external=True, |
54 | 56 | ), |
|
0 commit comments