From a9c388a613f67bfc0923a686410d706ac5bd0636 Mon Sep 17 00:00:00 2001 From: MananTank Date: Mon, 8 Sep 2025 19:59:33 +0000 Subject: [PATCH] Dashboard: Add Bridge in framer paths (#8006) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR focuses on updating the `apps/dashboard/framer-rewrites.js` file by adding a new route for monetization. ### Detailed summary - Added the route `"/monetize/bridge"` to the existing array of routes in `apps/dashboard/framer-rewrites.js`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit * New Features * Introduced a new public route: /monetize/bridge. Users can now directly access the Monetize Bridge experience via this URL, enabling easier navigation and deep-linking from emails, bookmarks, or external references. Existing routes remain unchanged, so current links and workflows continue to work as before. This addition improves discoverability and provides a clearer, direct path to the relevant monetization flow. --- apps/dashboard/framer-rewrites.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/dashboard/framer-rewrites.js b/apps/dashboard/framer-rewrites.js index 81077ce08c6..7c6a87b3bca 100644 --- a/apps/dashboard/framer-rewrites.js +++ b/apps/dashboard/framer-rewrites.js @@ -64,4 +64,5 @@ module.exports = [ "/enterprise", "/token", "/vault", + "/monetize/bridge", ];