Compare commits

...

1 Commits

Author SHA1 Message Date
Yana a5c760d8ff Remove Buy button and route to page 2025-06-10 17:58:39 +03:00
2 changed files with 1 additions and 17 deletions
-6
View File
@@ -61,12 +61,6 @@ export const Nav = () => {
mode: 'admin',
onClick: () => navigate('/admin'),
},
{
label: 'Buy',
route: '/buy',
Icon: Toll,
onClick: () => navigate('/buy'),
},
]);
return (
+1 -11
View File
@@ -4,16 +4,7 @@ import { ApplicationLayout } from '../layouts';
import { Terminal } from '../pages/terminal';
import { Send } from '../components/Send';
import { Receive } from '../components/Receive';
import {
Balance,
InternalDocs,
DelegationPage,
Admin,
BondingPage,
NodeSettingsPage,
BuyPage,
Settings,
} from '../pages';
import { Balance, InternalDocs, DelegationPage, Admin, BondingPage, NodeSettingsPage, Settings } from '../pages';
export const AppRoutes = () => (
<ApplicationLayout>
@@ -29,7 +20,6 @@ export const AppRoutes = () => (
<Route path="/delegation" element={<DelegationPage />} />
<Route path="/docs" element={<InternalDocs />} />
<Route path="/admin" element={<Admin />} />
<Route path="/buy" element={<BuyPage />} />
</Routes>
</ApplicationLayout>
);