erste version
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user