Fast fertig

This commit is contained in:
2025-09-15 16:08:35 +02:00
parent 4d755e7fb0
commit ecce65db79
22 changed files with 2023 additions and 227 deletions

View File

@@ -10,6 +10,9 @@ import ClientsProjects from "./pages/ClientsProjects";
import Locations from "./pages/Locations";
import Careers from "./pages/Careers";
import Contact from "./pages/Contact";
import Legal from "./pages/Legal";
import Privacy from "./pages/Privacy";
import Terms from "./pages/Terms";
import NotFound from "./pages/NotFound";
const queryClient = new QueryClient();
@@ -28,6 +31,9 @@ const App = () => (
<Route path="/locations" element={<Locations />} />
<Route path="/careers" element={<Careers />} />
<Route path="/contact-us" element={<Contact />} />
<Route path="/legal" element={<Legal />} />
<Route path="/privacy" element={<Privacy />} />
<Route path="/terms" element={<Terms />} />
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
<Route path="*" element={<NotFound />} />
</Routes>