diff --git a/FrontendV2/src/App.tsx b/FrontendV2/src/App.tsx
index 05c206c..5c774c9 100644
--- a/FrontendV2/src/App.tsx
+++ b/FrontendV2/src/App.tsx
@@ -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() {
} />
+ } />
diff --git a/FrontendV2/src/pages/NotFoundPage.tsx b/FrontendV2/src/pages/NotFoundPage.tsx
new file mode 100644
index 0000000..b3c36f6
--- /dev/null
+++ b/FrontendV2/src/pages/NotFoundPage.tsx
@@ -0,0 +1,9 @@
+import React from "react";
+
+export const NotFoundPage = () => {
+ return (
+ <>
+
+ >
+ )
+};