From 1264d293bf484aeb8f3e8436d35c485df8481786 Mon Sep 17 00:00:00 2001 From: Tola Leng Date: Fri, 6 Jun 2025 18:49:54 +0800 Subject: [PATCH] Implement view public page functionality --- application/src/App.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 */} } />