Skip to content

Commit 93d233b

Browse files
committed
start of frontend application
1 parent 04a6c6d commit 93d233b

File tree

4 files changed

+876
-6
lines changed

4 files changed

+876
-6
lines changed

frontend/src/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { HomePage } from './pages/HomePage';
66
import { ComparePage } from './pages/ComparePage';
77
import { AnalyzePage } from './pages/AnalyzePage';
88
import { SettingsPage } from './pages/SettingsPage';
9+
import { DemoPage } from './pages/DemoPage';
910

1011
// Create a client
1112
const queryClient = new QueryClient({
@@ -27,6 +28,7 @@ function App() {
2728
<Route path="/" element={<HomePage />} />
2829
<Route path="/compare" element={<ComparePage />} />
2930
<Route path="/analyze" element={<AnalyzePage />} />
31+
<Route path="/demo" element={<DemoPage />} />
3032
<Route path="/settings" element={<SettingsPage />} />
3133
</Routes>
3234
</Layout>

0 commit comments

Comments
 (0)