You are on page 1of 1

<Route path="/about" element={<About />} />

<Route path="/services" element={<Services />} />


<Route path="/contact" element={<Contact />} />
<Route path="/login" element={<Login />} />
<Route path="/register" element={<Register />} />
<Route path="/profile/:userId" element={<Profile />} />

{/* User routes */}


<Route path="/users" element={<Dashboard />}>
<Route path="home" element={<Home />} />

You might also like