Jeremy DUCOURTHIAL 3 years ago
commit cdcfd3540c

@ -8,6 +8,9 @@ import Dashboard from './pages/Dashboard';
import Analyse from './pages/Analyse';
import Admin_list from './pages/Admin_list';
import Admin_create from './pages/Admin_create';
import Calendrier from './pages/Calendrier';
import Repertoire from './pages/Repertoire';
import Parametres from './pages/Parametres';
const App = () => {
return (
@ -21,6 +24,9 @@ const App = () => {
<Route path="/Admin_supp" element={<Admin_supp />} />
<Route path="/Dashboard" element={<Dashboard />} />
<Route path="/Analyse" element={<Analyse />} />
<Route path="/Calendrier" element={<Calendrier />} />
<Route path="/Repertoire" element={<Repertoire />} />
<Route path="/Parametres" element={<Parametres />} />
</Routes>
</BrowserRouter>
);

@ -33,14 +33,14 @@ const NavigationDashboard = () => {
</NavLink>
</div>
</NavLink>
<NavLink className="répertoire" to="/Répertoire">
<NavLink className="repertoire" to="/Repertoire">
<div className="parti_three">
<button className="button" type="submit">
<img className="logo_nav_bar" srcSet="./logo_group.svg"/>
</button>
</div>
</NavLink>
<NavLink className="paramètres" to="/Paramètres">
<NavLink className="parametres" to="/Parametres">
<div className="parti_four">
<button className="button" type="submit">
<img className="logo_nav_bar" srcSet="./logo_parametre.svg"/>

@ -0,0 +1,13 @@
import React from 'react';
import NavigationDashboard from '../components/NavigationDashboard';
const Calendrier = () => {
return (
<body>
coucou
</body>
);
};
export default Calendrier;

@ -0,0 +1,13 @@
import React from 'react';
import NavigationDashboard from '../components/NavigationDashboard';
const Parametres = () => {
return (
<body>
coucou
</body>
);
};
export default Parametres;

@ -0,0 +1,13 @@
import React from 'react';
import NavigationDashboard from '../components/NavigationDashboard';
const Repertoire = () => {
return (
<body>
coucou
</body>
);
};
export default Repertoire;
Loading…
Cancel
Save