@@ -74,36 +74,24 @@ def card(company: str, text: str, class_name: str = "") -> rx.Component:
7474
7575def bento_cards () -> rx .Component :
7676 return rx .el .section (
77- # # Dell
78- # card(
79- # company="dell",
80- # text="Dell is the standard for frontend hosting. Reflex keeps them shipping.",
81- # ),
82- # # LlamaIndex
83- # card(
84- # company="llamaindex",
85- # text="To build the fastest-growing corporate card, LlamaIndex chose the fastest tool.",
86- # ),
87- # # Autodesk
88- # card(
89- # company="autodesk",
90- # text="Autodesk switched their 1,000 person team to Reflex to move faster.",
91- # ),
77+ card (
78+ company = "autodesk" ,
79+ text = "How Autodesk saved 25% of their development time on each project with Reflex" ,
80+ ),
9281 # Bayesline
9382 card (
9483 company = "bayesline" ,
95- text = "Why Basyesline Chose Reflex over Plotly Dash" ,
84+ text = "Why Bayesline chose Reflex over Plotly Dash for their production-grade apps " ,
9685 ),
9786 # Ansa
9887 card (
9988 company = "ansa" ,
100- text = "Why Ansa chose Reflex over a no-code/low-code framework for their workflow automations " ,
89+ text = "How Ansa saved 100 hours of manual work a month with Reflex " ,
10190 ),
10291 # Seller X
10392 card (
10493 company = "sellerx" ,
105- text = "Why SellerX chose Reflex over Streamlit for their data processing pipeline" ,
106- class_name = " col-span-2" ,
94+ text = "Why SellerX chose Reflex over Streamlit" ,
10795 ),
10896 class_name = "grid grid-cols-1 lg:grid-cols-2 gap-4 mx-auto w-full max-w-[69.25rem]" ,
10997 )
@@ -159,38 +147,3 @@ def _card(company: str, is_company: bool = True, **kwarg) -> rx.Component:
159147 )
160148
161149
162- def bento_cards () -> rx .Component :
163- return rx .el .section (
164- # # Dell
165- # card(
166- # company="dell",
167- # text="Dell is the standard for frontend hosting. Reflex keeps them shipping.",
168- # ),
169- # # LlamaIndex
170- # card(
171- # company="llamaindex",
172- # text="To build the fastest-growing corporate card, LlamaIndex chose the fastest tool.",
173- # ),
174- # # Autodesk
175- # card(
176- # company="autodesk",
177- # text="Autodesk switched their 1,000 person team to Reflex to move faster.",
178- # ),
179- # Bayesline
180- card (
181- company = "bayesline" ,
182- text = "Why Basyesline Chose Reflex over Plotly Dash" ,
183- ),
184- # Ansa
185- card (
186- company = "ansa" ,
187- text = "Why Ansa chose Reflex over a no-code/low-code framework for their workflow automations" ,
188- ),
189- # Seller X
190- card (
191- company = "sellerx" ,
192- text = "Why SellerX chose Reflex over Streamlit for their data processing pipeline" ,
193- class_name = " col-span-2" ,
194- ),
195- class_name = "grid grid-cols-1 lg:grid-cols-2 gap-4 mx-auto w-full max-w-[69.25rem]" ,
196- )
0 commit comments