Skip to content

Commit 3ff5a0e

Browse files
authored
ENG-6114: Redirect to databricks notion page (#1412)
* ENG-6114: Redirect to databricks notion page * remove duplicate
1 parent fc47f6c commit 3ff5a0e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pcweb/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
GALLERY_FORM_URL = "https://docs.google.com/forms/d/e/1FAIpQLSfB30hXB09CZ_H0Zi684w1y1zQSScyT3Qhd1mOUrAAIq9dj3Q/viewform?usp=sf_link"
4141
NPMJS_URL = "https://www.npmjs.com/"
4242
SPLINE_URL = "https://github.com/splinetool/react-spline"
43-
REFLEX_CLOUD_URL = "https://cloud.reflex.dev"
4443
ENTERPRISE_DOCS_URL = "https://enterprise.reflex.dev"
44+
DATABRICKS_NOTION_URL = "https://reflex-dev.notion.site/reflex-x-databricks"
4545

4646
# Install urls.
4747
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)