Skip to content
This repository was archived by the owner on Apr 28, 2026. It is now read-only.

Commit 23450dd

Browse files
committed
Refine Databricks integrations section content and styling
- Left-align all text content for better readability - Convert AI services list to bullet points (SQL Warehouse, Unity Catalog, Genie AI, OAuth) - Remove redundant 'This integration enables you to:' section - Remove bold styling from final paragraph for consistent text weight - Update R logo card styling with violet theme (border and background)
1 parent b100c6d commit 23450dd

1 file changed

Lines changed: 16 additions & 18 deletions

File tree

pcweb/pages/databricks/views/integrations.py

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def r_logo_card() -> rx.Component:
9595
),
9696
class_name="size-15 rounded-lg border border-slate-5 dark:border-[#1C2024] shadow-large bg-white-1 absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 z-[2]",
9797
),
98-
class_name="size-18 rounded-xl border border-slate-3 dark:border-[#1C2024] shadow-large bg-white/76 dark:bg-slate-1 relative z-[2]",
98+
class_name="size-18 rounded-xl border border-violet-9 dark:border-[#1C2024] shadow-large bg-violet-8 dark:bg-violet-1 relative z-[2]",
9999
)
100100

101101

@@ -137,31 +137,29 @@ def integrations_row() -> rx.Component:
137137
def content_text() -> rx.Component:
138138
return rx.el.div(
139139
rx.el.p(
140-
"With Reflex's Databricks integration, you can build customizable, performant web apps that seamlessly leverage Databricks' powerful data and AI services — including SQL Warehouse, Unity Catalog, Genie AI, and OAuth-based authentication. These are just a few examples — Reflex can hook into most Databricks services, giving you the flexibility to integrate analytics, governance, AI, and data pipelines directly into your apps.",
141-
class_name="text-slate-12 text-center mb-6",
140+
"With Reflex's Databricks integration, you can build customizable, performant web apps that seamlessly leverage Databricks' powerful data and AI services:",
141+
class_name="text-slate-12 text-left mb-4",
142142
),
143-
rx.el.div(
144-
rx.el.p(
145-
"This integration enables you to:",
146-
class_name="text-slate-12 text-center font-medium mb-4",
147-
),
148-
rx.el.ul(
149-
rx.el.li("Query and visualize data directly from Databricks SQL Warehouses.", class_name="text-slate-12 mb-2"),
150-
rx.el.li("Securely manage access and permissions through Unity Catalog and OAuth.", class_name="text-slate-12 mb-2"),
151-
rx.el.li("Incorporate AI-driven insights and automation using Genie AI.", class_name="text-slate-12 mb-2"),
152-
rx.el.li("Build responsive, production-grade interfaces in Python with Reflex's simple yet powerful framework.", class_name="text-slate-12 mb-2"),
153-
class_name="text-left max-w-2xl mx-auto mb-6 space-y-2",
154-
),
143+
rx.el.ul(
144+
rx.el.li("SQL Warehouse", class_name="text-slate-12 mb-1"),
145+
rx.el.li("Unity Catalog", class_name="text-slate-12 mb-1"),
146+
rx.el.li("Genie AI", class_name="text-slate-12 mb-1"),
147+
rx.el.li("OAuth-based authentication", class_name="text-slate-12 mb-1"),
148+
class_name="text-left mb-4 ml-4 list-disc",
149+
),
150+
rx.el.p(
151+
"These are just a few examples — Reflex can hook into most Databricks services, giving you the flexibility to integrate analytics, governance, AI, and data pipelines directly into your apps.",
152+
class_name="text-slate-12 text-left mb-6",
155153
),
156154
rx.el.p(
157155
"Once your app is ready, you can deploy it directly to Databricks Apps, ensuring that all data, compute, and governance remain fully within your organization's Databricks environment — maintaining compliance, security, and performance at scale.",
158-
class_name="text-slate-12 text-center mb-6",
156+
class_name="text-slate-12 text-left mb-6",
159157
),
160158
rx.el.p(
161159
"With Reflex + Databricks, you can transform data workflows, analytics dashboards, and AI interfaces into interactive, secure, and enterprise-ready applications — all without leaving your Databricks ecosystem.",
162-
class_name="text-slate-12 text-center font-medium mb-8",
160+
class_name="text-slate-12 text-left mb-8",
163161
),
164-
class_name="flex flex-col items-center mx-auto w-full justify-center max-w-[36rem] mt-8",
162+
class_name="flex flex-col items-start mx-auto w-full justify-start max-w-[36rem] mt-8",
165163
)
166164

167165

0 commit comments

Comments
 (0)