From 76c0e6a64bb8ab99777c131c22f1ef093ca769be Mon Sep 17 00:00:00 2001 From: Theis Gaedigk Date: Fri, 5 Dec 2025 14:44:09 +0100 Subject: [PATCH] added 404 --- FrontendV2/src/App.tsx | 2 ++ FrontendV2/src/pages/NotFoundPage.tsx | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 FrontendV2/src/pages/NotFoundPage.tsx 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 ( + <> + + + ) +};