diff --git a/Client/src/app/app-routing.module.ts b/Client/src/app/app-routing.module.ts index a6178af..e50e65b 100644 --- a/Client/src/app/app-routing.module.ts +++ b/Client/src/app/app-routing.module.ts @@ -20,6 +20,7 @@ import { LiveStreamComponent } from './components/live-stream/live-stream.compon import { VideoServicesComponent } from './components/video-services/video-services.component'; import { ImageComponent } from './components/image/image.component'; import { VideoComponent } from './components/video/video.component'; +import { FCCPermitPageComponent } from './components/fcc-permit-page/fcc-permit-page.component'; const routes = [ @@ -110,6 +111,10 @@ const routes = { path: 'contributor/report', component: ContributorAllReportsComponent + }, + { + path: 'fmpermit', + component: FCCPermitPageComponent } ] diff --git a/Client/src/app/app.module.ts b/Client/src/app/app.module.ts index 4759162..6d53dcc 100644 --- a/Client/src/app/app.module.ts +++ b/Client/src/app/app.module.ts @@ -53,6 +53,7 @@ import { EventLargeComponent } from './components/event-large/event-large.compon import { SalvationPageComponent } from './components/salvation-page/salvation-page.component'; import { MediaPageComponent } from './components/media-page/media-page.component'; import { VideoPopupComponent } from './components/popups/video-popup/video-popup.component'; +import { FCCPermitPageComponent } from './components/fcc-permit-page/fcc-permit-page.component'; //Directives import { FadeInOnScrollDirective } from './directives/fade-in-on-scroll.directive'; @@ -127,6 +128,7 @@ import { YoutubePopupComponent } from './components/popups/youtube-popup/youtube VideoPopupComponent, CampPageComponent, MembersPageComponent, + FCCPermitPageComponent, AddUserPopupComponent, AddTransactionPageComponent, AddTransactionPopupComponent, diff --git a/Client/src/app/components/fcc-permit-page/fcc-permit-page.component.css b/Client/src/app/components/fcc-permit-page/fcc-permit-page.component.css new file mode 100644 index 0000000..3144eb1 --- /dev/null +++ b/Client/src/app/components/fcc-permit-page/fcc-permit-page.component.css @@ -0,0 +1,14 @@ +.section-header{ + font-size: 1.2em; + font-weight: bold; + border-bottom: 1px solid gray; + margin-bottom: 10px; +} + +a{ + color: inherit; +} + +a:visited{ + color: inherit; +} diff --git a/Client/src/app/components/fcc-permit-page/fcc-permit-page.component.html b/Client/src/app/components/fcc-permit-page/fcc-permit-page.component.html new file mode 100644 index 0000000..7990239 --- /dev/null +++ b/Client/src/app/components/fcc-permit-page/fcc-permit-page.component.html @@ -0,0 +1,16 @@ + +
+

FCC Noncommercial FM Radio Station Construction Permit

+

+ On November 9, 2021, Old Fashion Baptist Church of Butte, applicant for a Noncommercial FM Radio Station on + 88.1mhz, in Butte, MT, filed an application with the Federal Communications Commission for a new Noncommercial FM + Station. Members of the public wishing to view this application or obtain information about how to file comments and + petitions on the application can visit https://enterpriseefiling.fcc.gov/dataentry/views/public/nceDraftCopy?displayType=html&appKey=25076f917cce2f5b0 + 17cd34cdd450dee&id=25076f917cce2f5b017cd34cdd450dee&goBack=N. +

+
+ +
\ No newline at end of file diff --git a/Client/src/app/components/fcc-permit-page/fcc-permit-page.component.ts b/Client/src/app/components/fcc-permit-page/fcc-permit-page.component.ts new file mode 100644 index 0000000..2f8d39f --- /dev/null +++ b/Client/src/app/components/fcc-permit-page/fcc-permit-page.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-fcc-permit-page', + templateUrl: './fcc-permit-page.component.html', + styleUrls: ['./fcc-permit-page.component.css'] +}) +export class FCCPermitPageComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/Client/src/app/components/home/home.component.html b/Client/src/app/components/home/home.component.html index 8b5e76c..ff2c35c 100644 --- a/Client/src/app/components/home/home.component.html +++ b/Client/src/app/components/home/home.component.html @@ -198,4 +198,16 @@ + +
+
+ +
+
\ No newline at end of file diff --git a/Client/src/app/directives/icon-code-map.ts b/Client/src/app/directives/icon-code-map.ts index dbf7d8c..39e3b6c 100644 --- a/Client/src/app/directives/icon-code-map.ts +++ b/Client/src/app/directives/icon-code-map.ts @@ -1,6 +1,7 @@ export const ICONS = { access_time: '', add: '', + announcement: '', close: '', copyright: '', delete_forever: '',