From ccf73db63dc61a50a47f371bdfa2b6c0e934ab6e Mon Sep 17 00:00:00 2001 From: mindesbunister Date: Wed, 16 Jul 2025 16:16:17 +0200 Subject: [PATCH] feat: Add Chart Trading page to main navigation menu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added Chart Trading link to navigation: - New navigation item with 📈 icon for advanced chart trading - Positioned between Trading and Automation in the menu - Links to /chart-trading-demo route - Maintains consistent styling with other nav items - Provides access to Jupiter-style trading interface Users can now easily access the advanced chart trading page from the main menu. --- components/Navigation.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/Navigation.tsx b/components/Navigation.tsx index a5057d5..9fe8404 100644 --- a/components/Navigation.tsx +++ b/components/Navigation.tsx @@ -22,6 +22,12 @@ const navItems = [ icon: '💰', description: 'Execute trades' }, + { + name: 'Chart Trading', + href: '/chart-trading-demo', + icon: '📈', + description: 'Advanced chart trading' + }, { name: 'Automation', href: '/automation',