diff --git a/application/src/App.tsx b/application/src/App.tsx index 9c79abf..46c461c 100644 --- a/application/src/App.tsx +++ b/application/src/App.tsx @@ -17,6 +17,8 @@ import Profile from "./pages/Profile"; import NotFound from "./pages/NotFound"; import SslDomain from "./pages/SslDomain"; import ScheduleIncident from "./pages/ScheduleIncident"; +import OperationalPage from "./pages/OperationalPage"; +import PublicStatusPage from "./pages/PublicStatusPage"; // Create a Protected route component const ProtectedRoute = ({ children }: { children: React.ReactNode }) => { @@ -111,6 +113,16 @@ const App = () => { } /> + + + + } + /> + {/* Public status page route */} + } /> {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} } />