Add NotFound route

This commit is contained in:
Arthur Belleville 2025-03-27 08:50:24 +01:00
parent bdbe79daa9
commit ba1f48ad0d
No known key found for this signature in database

View file

@ -9,6 +9,7 @@ import { ProtectedRoute } from "./components/ProtectedRoute";
import { TabloPage } from "./pages/tablo";
import { SessionProvider } from "./contexts/SessionContext";
import { OAuthSigninPage } from "./pages/oauth-signin";
import { NotFoundPage } from "./pages/NotFoundPage";
export const App = () => {
return (
@ -35,6 +36,7 @@ export const App = () => {
<Route path="/login" element={<LoginPage />} />
<Route path="/signup" element={<SignUpPage />} />
<Route path="/reset-password" element={<ResetPasswordPage />} />
<Route path="*" element={<NotFoundPage />} />
</Routes>
<style>
{`