added 404

This commit is contained in:
2025-12-05 14:44:09 +01:00
parent ebda6424c7
commit 76c0e6a64b
2 changed files with 11 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ import { Box, Flex } from "@chakra-ui/react";
import { Footer } from "./components/footer/Footer";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { API_BASE } from "@/config/api.config";
import { NotFoundPage } from "./pages/NotFoundPage";
const queryClient = new QueryClient();
@@ -83,6 +84,7 @@ function App() {
</Route>
<Route path="/login" element={<LoginPage />} />
<Route path="/not-found" element={<NotFoundPage />} />
</Routes>
</BrowserRouter>
</UserContext.Provider>

View File

@@ -0,0 +1,9 @@
import React from "react";
export const NotFoundPage = () => {
return (
<>
</>
)
};