Skip to content

Commit 924bee8

Browse files
authored
Merge pull request #85 from zestones/feat/39-pdf-upload
feat(frontend): PDF upload component with mock backend (M6.6)
2 parents 62841cc + de182fe commit 924bee8

5 files changed

Lines changed: 822 additions & 0 deletions

File tree

frontend/src/app/routes.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import ControlRoomPage from "../pages/ControlRoomPage";
44
import DataPage from "../pages/DataPage";
55
import DesignPage from "../pages/DesignPage";
66
import LoginPage from "../pages/LoginPage";
7+
import OnboardingPage from "../pages/OnboardingPage";
78
import { AppShell } from "./AppShell";
89

910
export function AppRoutes() {
@@ -19,6 +20,22 @@ export function AppRoutes() {
1920
</RequireAuth>
2021
}
2122
/>
23+
<Route
24+
path="/onboarding"
25+
element={
26+
<RequireAuth>
27+
<OnboardingPage />
28+
</RequireAuth>
29+
}
30+
/>
31+
<Route
32+
path="/onboarding/:session_id"
33+
element={
34+
<RequireAuth>
35+
<OnboardingPage />
36+
</RequireAuth>
37+
}
38+
/>
2239
<Route
2340
element={
2441
<RequireAuth>

0 commit comments

Comments
 (0)