introducing thematiques route
This commit is contained in:
parent
b55ab5a961
commit
febb125b2e
|
|
@ -11,6 +11,7 @@ import About from "./pages/About.jsx";
|
|||
import ConditionsOfUse from "./pages/ConditionsOfUse.jsx";
|
||||
import Cookies from "./pages/Cookies.jsx";
|
||||
import Confidentiality from "./pages/Confidentiality.jsx";
|
||||
import Thematiques from "./pages/Thematiques.jsx";
|
||||
|
||||
import { useLocation, Routes, Route } from "react-router-dom";
|
||||
import { AnimatePresence } from "framer-motion";
|
||||
|
|
@ -39,12 +40,14 @@ function App() {
|
|||
<Route path='/home' element={<Home />} />
|
||||
<Route path='/select-profile' element={<Profile />} />
|
||||
<Route path='/select-country' element={<Country />} />
|
||||
<Route path='/play/:id' element={<Game />} />
|
||||
<Route path='/play' element={<Game />} />
|
||||
<Route path='/results' element={<Results />} />
|
||||
<Route path='/rating' element={<Rating />} />
|
||||
<Route path='/about' element={<About />} />
|
||||
<Route path='/conditions' element={<ConditionsOfUse />} />
|
||||
<Route path='/cookies' element={<Cookies />} />
|
||||
<Route path='/themes' element={<Thematiques />} />
|
||||
<Route path='/confidentiality' element={<Confidentiality />} />
|
||||
<Route path='/test' element={<Test />} />
|
||||
</Routes>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user