Added a bunch of services

This commit is contained in:
2022-11-10 11:06:14 -05:00
parent 1fc86d3614
commit fde487fc66
20 changed files with 268 additions and 38 deletions

View File

@ -13,15 +13,15 @@ import {RulesComponent} from './views/reenact/rules/rules.component';
const routes: Routes = [
{path: '', pathMatch: 'full', component: HomeComponent},
{path: 'about', component: AboutComponent},
{path: 'drill', component: DrillComponent},
{path: 'events/aestiva', component: AestivaComponent},
{path: 'events/hiberna', component: HibernaComponent},
{path: 'events/calendar', component: CalendarComponent},
{path: 'gallery', component: GalleryComponent},
{path: 'getting-started', component: GettingStartedComponent},
{path: 'rules', component: RulesComponent},
{path: '**', component: FourOFourComponent}
{path: 'about', component: AboutComponent, data: {title: 'About'}},
{path: 'drill', component: DrillComponent, data: {title: 'Drill Commands'}},
{path: 'events/aestiva', component: AestivaComponent, data: {title: 'Castra Aestiva'}},
{path: 'events/hiberna', component: HibernaComponent, data: {title: 'Castra Hiberna'}},
{path: 'events/calendar', component: CalendarComponent, data: {title: 'Calendar'}},
{path: 'gallery', component: GalleryComponent, data: {title: 'Gallery'}},
{path: 'getting-started', component: GettingStartedComponent, data: {title: 'Getting Started'}},
{path: 'rules', component: RulesComponent, data: {title: 'Rules & Regulations'}},
{path: '**', component: FourOFourComponent, data: {title: '404'}}
];
@NgModule({