From 3c8f52596a4504a7538f69fb67d3cafaeec8fdba Mon Sep 17 00:00:00 2001 From: joaquim-verges Date: Mon, 20 Oct 2025 23:11:33 +0000 Subject: [PATCH] [Dashboard] Add nexus to framer-rewrites.js (#8287) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR focuses on updating the routing paths in the `apps/dashboard/framer-rewrites.js` file by adding a new route for `/nexus` and ensuring existing routes are retained. ### Detailed summary - Added the route `"/nexus"` to the existing routing configuration. - Retained existing routes: `"/payments"`, `"/payments/x402"`, `"/auth"`, `"/in-app-wallets"`, and `"/transactions"`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit * **New Features** * Added support for the new "/nexus" route in the dashboard application. --- 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 917f871f4d1..3c2f6d1485b 100644 --- a/apps/dashboard/framer-rewrites.js +++ b/apps/dashboard/framer-rewrites.js @@ -11,6 +11,7 @@ module.exports = [ "/account-abstraction", "/payments", "/payments/x402", + "/nexus", "/auth", "/in-app-wallets", "/transactions",