erste version

This commit is contained in:
2025-09-15 13:50:16 +02:00
parent 9b4cb2aad5
commit 4d755e7fb0
22 changed files with 1822 additions and 384 deletions

View File

@@ -6,6 +6,10 @@ import { BrowserRouter, Routes, Route } from "react-router-dom";
import Index from "./pages/Index";
import Services from "./pages/Services";
import About from "./pages/About";
import ClientsProjects from "./pages/ClientsProjects";
import Locations from "./pages/Locations";
import Careers from "./pages/Careers";
import Contact from "./pages/Contact";
import NotFound from "./pages/NotFound";
const queryClient = new QueryClient();
@@ -20,6 +24,10 @@ const App = () => (
<Route path="/" element={<Index />} />
<Route path="/services-and-specialties" element={<Services />} />
<Route path="/about-us" element={<About />} />
<Route path="/clients-and-projects" element={<ClientsProjects />} />
<Route path="/locations" element={<Locations />} />
<Route path="/careers" element={<Careers />} />
<Route path="/contact-us" element={<Contact />} />
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
<Route path="*" element={<NotFound />} />
</Routes>