2025-10-02 22:53:50 +02:00
|
|
|
import { Routes } from '@angular/router';
|
|
|
|
import {Home} from './pages/home/home';
|
2025-10-04 12:58:44 +02:00
|
|
|
import { Agenda } from './pages/agenda/agenda';
|
2025-10-04 16:14:42 +02:00
|
|
|
import { NouvellesCategories } from './pages/nouvelles-categories/nouvelles-categories';
|
2025-10-04 19:18:10 +02:00
|
|
|
import { UnlocatedEventsPage } from './pages/unlocated-events/unlocated-events';
|
2025-10-02 22:53:50 +02:00
|
|
|
|
|
|
|
export const routes: Routes = [
|
|
|
|
{
|
|
|
|
path : '',
|
|
|
|
component: Home
|
2025-10-04 12:58:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
path : 'agenda',
|
|
|
|
component: Agenda
|
2025-10-04 16:14:42 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
path : 'nouvelles-categories',
|
|
|
|
component: NouvellesCategories
|
2025-10-04 19:18:10 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
path : 'unlocated-events',
|
|
|
|
component: UnlocatedEventsPage
|
2025-10-02 22:53:50 +02:00
|
|
|
}
|
|
|
|
];
|