Skip to content

Commit 4987f28

Browse files
committed
ENG-6114: Redirect to databricks notion page
1 parent b556323 commit 4987f28

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pcweb/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
SPLINE_URL = "https://github.com/splinetool/react-spline"
4343
REFLEX_CLOUD_URL = "https://cloud.reflex.dev"
4444
ENTERPRISE_DOCS_URL = "https://enterprise.reflex.dev"
45+
DATABRICKS_NOTION_URL = "https://reflex-dev.notion.site/reflex-x-databricks"
4546

4647
# Install urls.
4748
BUN_URL = "https://bun.sh"

pcweb/pcweb.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from pcweb.telemetry import get_pixel_website_trackers
1212
from pcweb.meta.meta import favicons_links
1313
from pcweb.pages.landing.views.ai_section import retreive_templates
14-
14+
from pcweb.constants import DATABRICKS_NOTION_URL
1515
# This number discovered by trial and error on Windows 11 w/ Node 18, any
1616
# higher and the prod build fails with EMFILE error.
1717
WINDOWS_MAX_ROUTES = int(os.environ.get("REFLEX_WEB_WINDOWS_MAX_ROUTES", "100"))
@@ -138,7 +138,9 @@
138138
("/docs/pages/routes", "/docs/pages/overview"),
139139
("/docs/assets/referencing_assets", "/docs/assets/overview"),
140140
("/changelog", "https://github.com/reflex-dev/reflex/releases"),
141-
("/blog/2025-10-27-top-10-data-visualization-libraries", "/blog/2025-01-27-top-10-data-visualization-libraries")
141+
("/blog/2025-10-27-top-10-data-visualization-libraries", "/blog/2025-01-27-top-10-data-visualization-libraries"),
142+
# Databricks notion page redirect
143+
("/databricks", DATABRICKS_NOTION_URL)
142144
]
143145

144146
for source, target in redirects:

0 commit comments

Comments
 (0)