impressum

This commit is contained in:
Basilosaurusrex
2026-02-02 22:03:15 +01:00
parent 217bbdc6a7
commit 6af24d28e7
2 changed files with 198 additions and 0 deletions

View File

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