Add explorer sub-routes for accounts and assets views

- Add /explorer/* wildcard route in App.tsx
- Add view navigation tabs (Overview, Accounts, Assets)
- Parse URL to determine current view
- Add accounts and assets view components
- Add account detail view with address display
This commit is contained in:
2026-01-15 11:54:53 +03:00
parent 58f306908c
commit f44800c013
2 changed files with 161 additions and 3 deletions
+1
View File
@@ -117,6 +117,7 @@ function App() {
<Route path="/reset-password" element={<PasswordReset />} />
<Route path="/" element={<Index />} />
<Route path="/explorer" element={<Explorer />} />
<Route path="/explorer/*" element={<Explorer />} />
<Route path="/docs/*" element={<Docs />} />
<Route path="/wallet" element={<WalletDashboard />} />
<Route path="/api" element={<Api />} />