Skip to content

Commit d2a2a4f

Browse files
committed
updates
1 parent 6887971 commit d2a2a4f

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

pcweb/pages/framework/views/frontend_features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def frontend_features() -> rx.Component:
104104
class_name="flex flex-col lg:border-r border-slate-3 lg:p-[5rem_6.5rem_5rem_2.5rem] lg:text-nowrap text-center lg:text-start pb-12 lg:pb-0 mt-12 lg:mt-0",
105105
),
106106
rx.box(
107-
stat(stat="300K+", text="Apps built with Reflex"),
107+
stat(stat="1 Million+", text="Apps built with Reflex"),
108108
class_name="lg:px-10 lg:py-[5.5rem] py-12 w-auto border-b border-slate-3 lg:border-b-0",
109109
),
110110
class_name="flex flex-col-reverse lg:flex-row lg:border-t border-slate-3 max-w-[64.19rem] justify-center lg:border-x w-full",

pcweb/pages/landing/views/companies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def company_card(name: str, id: str) -> rx.Component:
158158
companies_case_studies_var.contains(company_cs.value),
159159
quote_box(company_cs.value),
160160
rx.box(
161-
stat(stat="300K+", text="Apps built with Reflex"),
161+
stat(stat="1 Million+", text="Apps built with Reflex"),
162162
class_name="animate-fade flex justify-center items-center size-full animate-duration-[550ms] animate-ease-out animate-fill-both",
163163
),
164164
),

pcweb/pages/landing/views/enterprise_social.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,12 @@ def enterprise_card(image: str, name: str, stat: str, text: str) -> rx.Component
5555
),
5656
class_name="flex flex-col gap-2",
5757
),
58+
ui.icon(
59+
"ArrowUpRight01Icon",
60+
class_name="group-hover:opacity-100 opacity-0 scale-50 group-hover:scale-100 transition-all duration-100 absolute top-4 right-4 size-5 text-secondary-11 origin-top-right ease-in-out z-100",
61+
),
5862
to=f"/customers/{name.lower().replace(' ', '-')}",
59-
class_name="flex flex-col gap-10 p-10 shadow-small border border-slate-3 hover:border-slate-4 rounded-2xl bg-white-1 hover:bg-slate-2 transition-colors h-[15.875rem] cursor-pointer",
63+
class_name="flex flex-col gap-10 p-10 shadow-small border border-slate-3 hover:border-slate-4 rounded-2xl bg-white-1 hover:bg-slate-2 transition-colors h-[15.875rem] cursor-pointer group relative",
6064
)
6165

6266

pcweb/pages/landing/views/products.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ def products() -> rx.Component:
7474
"Hosting Platform",
7575
"Deploy, Host, and Scale",
7676
"Deploy through Databricks, Snowflake, self-host on AWS, GCP, Azure, or use Reflex Cloud.",
77-
"Explore Databricks Integration",
78-
"/databricks",
77+
"Explore Hosting Options",
78+
"/hosting",
7979
("amber", "11"),
8080
"hosting",
8181
),

pcweb/pages/landing/views/social_stats.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from pcweb.components.icons.icons import get_icon
44
from pcweb.components.numbers_pattern import numbers_pattern
5+
from pcweb.constants import GITHUB_STARS
56

67

78
def stat(icon: str, text: str) -> rx.Component:
@@ -18,6 +19,6 @@ def social_stats():
1819
numbers_pattern(side="right", reversed=True, class_name="right-0 top-0"),
1920
stat("browser", "1M+ Apps Built"),
2021
stat("checkmark", "Used by 25% of Fortune 500"),
21-
stat("github_navbar", "25K GitHub Stars"),
22+
stat("github_navbar", f"{GITHUB_STARS // 1000}K GitHub Stars"),
2223
class_name="flex flex-col justify-center items-center mx-auto w-full max-w-[64.19rem] lg:border-x border-slate-3 relative overflow-hidden border-t gap-4 lg:py-[5rem] py-[3.5rem] max-lg:border-b",
2324
)

0 commit comments

Comments
 (0)