diff --git a/README.md b/README.md
index fbd9148..815ef77 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
-
+
### Legio • XXX
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index a98491f..a707f11 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -30,6 +30,7 @@ import {GettingStartedComponent} from './views/reenact/getting-started/getting-s
import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component';
import {RulesComponent} from './views/reenact/rules/rules.component';
import {BuyComponent} from './views/reenact/buy/buy.component';
+import {ResourcesComponent} from './views/resources/resources.component';
export const APP_COMPONENTS: any[] = [
AboutComponent,
@@ -54,6 +55,7 @@ export const APP_COMPONENTS: any[] = [
MaintenanceComponent,
NavbarComponent,
PlaceholderComponent,
+ ResourcesComponent,
RulesComponent,
]
diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts
index f2ebb4e..412b373 100644
--- a/src/app/app.routing.ts
+++ b/src/app/app.routing.ts
@@ -14,6 +14,7 @@ import {GettingStartedComponent} from './views/reenact/getting-started/getting-s
import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component';
import {RulesComponent} from './views/reenact/rules/rules.component';
import {BuyComponent} from './views/reenact/buy/buy.component';
+import {ResourcesComponent} from './views/resources/resources.component';
const routes: Routes = [
{path: '', pathMatch: 'full', component: HomeComponent},
@@ -27,8 +28,9 @@ const routes: Routes = [
{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: 'info/resources', component: ResourcesComponent, data: {title: 'Resources'}},
{path: 'maintenance', component: MaintenanceComponent, data: {title: 'Maintenance'}},
+ {path: 'rules', component: RulesComponent, data: {title: 'Rules & Regulations'}},
{path: '**', component: FourOFourComponent, data: {title: '404'}}
];
diff --git a/src/app/components/banner/banner.component.html b/src/app/components/banner/banner.component.html
index e125831..e2fb4c7 100644
--- a/src/app/components/banner/banner.component.html
+++ b/src/app/components/banner/banner.component.html
@@ -12,7 +12,7 @@