new version

This commit is contained in:
Basilosaurusrex
2026-02-02 21:42:41 +01:00
parent 7e8d40878b
commit 217bbdc6a7
10 changed files with 410 additions and 24 deletions

View File

@@ -5,6 +5,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { BrowserRouter, Routes, Route } from "react-router-dom";
import Index from "./pages/Index";
import ContactPage from "./pages/Contact";
import AGBPage from "./pages/AGB";
import NotFound from "./pages/NotFound";
const queryClient = new QueryClient();
@@ -18,6 +19,7 @@ const App = () => (
<Routes>
<Route path="/" element={<Index />} />
<Route path="/kontakt" element={<ContactPage />} />
<Route path="/agb" element={<AGBPage />} />
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
<Route path="*" element={<NotFound />} />
</Routes>