Skip to content

Commit d3ae5a2

Browse files
authored
Merge branch 'main' into ahmad/update-chat-tutorial
2 parents 1a14a4c + cc7bc04 commit d3ae5a2

File tree

8 files changed

+50
-9
lines changed

8 files changed

+50
-9
lines changed
Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading

case-studies/autodesk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Paolo and his team chose Reflex to develop a production-ready web app fully in P
145145
```md quote
146146
- name: Paolo
147147
- role: Principal Implementation Consultant
148-
One person the can do the job of two with Reflex, so it cut our cost in half.
148+
One person can do the job of two with Reflex, so it cut our cost in half.
149149
```
150150

151151
* Rapid prototyping, ensuring faster, more collaborative development

docs/ai_builder/faq.md

Whitespace-only changes.

docs/ai_builder/intro.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## Overview

pcweb/pages/landing/views/companies.py

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@
1212
"apple",
1313
"microsoft",
1414
"amazon",
15-
"rappi",
15+
"unicef",
1616
"accenture",
1717
"ibm",
1818
"fastly",
1919
"autodesk",
2020
"STATS",
21-
"twilio",
21+
"sellerx",
2222
"ford",
2323
"paloalto",
2424
"bosch",
2525
"dell",
26-
"unicef",
27-
"nasa",
26+
"twilio",
27+
"rappi",
2828
"nike",
2929
]
3030

@@ -40,12 +40,29 @@
4040
},
4141
"autodesk": {
4242
"company_name": "Autodesk",
43-
"quote": "One person the can do the job of two with Reflex, so it cut our cost in half.",
43+
"quote": "One person can do the job of two with Reflex, so it cut our cost in half. I am able to wear all the caps at once: Solution Architecture, UI/UX, front-end and back-end.",
4444
"person": "Paolo",
4545
"picture": "/favicon.ico",
4646
"role": "Principal Consultant",
4747
"url": "/customers/autodesk",
4848
},
49+
"unicef": {
50+
"company_name": "Unicef",
51+
"quote": """Reflex made it easy to focus on building my app with pure Python and integrate the components I needed without the hassle of learning new front-end frameworks.
52+
It integrates seamlessly with Microsoft Azure, making deployment and scaling smooth and efficient.""",
53+
"person": "Lakshmi",
54+
"picture": "/favicon.ico",
55+
"role": "Data Science Specialist",
56+
},
57+
"sellerx": {
58+
"company_name": "SellerX",
59+
"quote": """With Reflex, we're able to ingest 100 GB of data and over 500,000 data points daily, all while developing ten times faster than with React and FastAPI.
60+
The built-in AG Grid functionality seamlessly integrates, making it the perfect solution for handling and visualizing large-scale data efficiently.""",
61+
"person": "Mike",
62+
"picture": "/favicon.ico",
63+
"role": "Head of AI & Automation",
64+
"url": "/customers/sellerx",
65+
},
4966
}
5067

5168
companies_case_studies_var = rx.Var.create(companies_case_studies)
@@ -72,7 +89,7 @@ def quote_box(company: str) -> rx.Component:
7289
return rx.fragment(
7390
rx.text(
7491
f'“{case_study["quote"]}”',
75-
class_name="text-sm text-slate-12 italic font-medium animate-fade animate-duration-[750ms] animate-fill-both",
92+
class_name="text-xs text-slate-12 italic font-medium animate-fade animate-duration-[750ms] animate-fill-both",
7693
),
7794
rx.box(
7895
rx.image(

pcweb/styles/colors.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# Customs colors from /assets/custom-colors.css
2-
from reflex.utils.types import validate_parameter_literals
32
from typing import Literal
43

54
ColorType = Literal["white", "slate", "violet", "jade", "red"]
65
ShadeType = Literal[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
76

87

9-
@validate_parameter_literals
108
def c_color(color: ColorType, shade: ShadeType, alpha: bool = False) -> str:
119
"""Create a color variable string."""
1210
shade_str = str(shade).replace(".", "-")

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
email-validator==2.1.1
22
black==23.10.0
33
pandas>=1.5.3
4+
typer
45
psycopg[binary]==3.2.3
56
plotly-express==0.4.1
67
googletrans-py==4.0.0

0 commit comments

Comments
 (0)