Skip to content

Commit 41ec41c

Browse files
authored
fix banner -> points to reflex build (#1293)
Co-authored-by: pourhakimi <[email protected]>
1 parent 9d94b32 commit 41ec41c

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

pcweb/components/hosting_banner.py

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import reflex as rx
2-
from pcweb.constants import REFLEX_CLOUD_URL
2+
3+
from pcweb.constants import REFLEX_AI_BUILDER
34

45

56
def glow() -> rx.Component:
@@ -27,28 +28,29 @@ def hosting_banner() -> rx.Component:
2728
rx.box(
2829
rx.box(
2930
rx.text(
30-
"Reflex Cloud - ",
31+
"Reflex Build - ",
3132
rx.el.span(
32-
"Fast, secure & scalable hosting. One command to deploy.",
33+
"Build internal apps with AI.",
3334
# class_name="text-slate-12 font-medium text-sm",
3435
class_name="hidden md:inline-block text-slate-12 font-medium text-sm",
3536
),
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+
# ),
4143
class_name="text-slate-12 font-semibold text-sm z-[1]",
4244
),
4345
rx.el.button(
44-
"Live Now!",
46+
"Try for Free!",
4547
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",
4648
),
4749
class_name="flex items-center gap-4",
4850
),
4951
),
5052
glow(),
51-
href=REFLEX_CLOUD_URL,
53+
href=REFLEX_AI_BUILDER,
5254
underline="none",
5355
is_external=True,
5456
),

0 commit comments

Comments
 (0)