moved most api stuff to web-api and built out a better monitoring solution for web-app

This commit is contained in:
Boki 2025-06-23 09:01:29 -04:00
parent fbff428e90
commit da1c52a841
45 changed files with 2986 additions and 312 deletions

View file

@ -1,6 +1,8 @@
import { Layout } from '@/components/layout';
import { DashboardPage } from '@/features/dashboard';
import { ExchangesPage } from '@/features/exchanges';
import { MonitoringPage } from '@/features/monitoring';
import { PipelinePage } from '@/features/pipeline';
import { BrowserRouter, Navigate, Route, Routes } from 'react-router-dom';
export function App() {
@ -24,6 +26,8 @@ export function App() {
element={<div className="p-4">Analytics Page - Coming Soon</div>}
/>
<Route path="settings" element={<div className="p-4">Settings Page - Coming Soon</div>} />
<Route path="system/monitoring" element={<MonitoringPage />} />
<Route path="system/pipeline" element={<PipelinePage />} />
</Route>
</Routes>
</BrowserRouter>