diff --git a/Client/src/app/components/home/countdown.ts b/Client/src/app/components/home/countdown.ts index 429a5a4..0a40ae6 100644 --- a/Client/src/app/components/home/countdown.ts +++ b/Client/src/app/components/home/countdown.ts @@ -8,7 +8,7 @@ export class Countdown { public seconds: number = 0; public services: VideoService[] = []; public showButton: boolean; - public showCounter: boolean = true; + public showCounter: boolean = false; public dateDisplay: string; public dateDisplaySmall: string; diff --git a/Client/src/app/components/home/home.component.css b/Client/src/app/components/home/home.component.css index e69743b..9675bfe 100644 --- a/Client/src/app/components/home/home.component.css +++ b/Client/src/app/components/home/home.component.css @@ -27,6 +27,10 @@ img.full { height: auto; } +.color-white { + color: white; +} + #call-to-action-container { text-align: center; position: absolute; diff --git a/Client/src/app/components/home/home.component.html b/Client/src/app/components/home/home.component.html index e5f5742..4ebc2cb 100644 --- a/Client/src/app/components/home/home.component.html +++ b/Client/src/app/components/home/home.component.html @@ -2,7 +2,7 @@ background image
-
+
VIDEO SERVICE STARTS IN @@ -32,7 +32,7 @@
- + info_outlineReopening Guidelines
@@ -48,21 +48,16 @@
-

COVID-19

+

Reopening!

- Due to the COVID-19 outbreak our church building will be closed until May 1st. Video - and audio services will be posted online during this time. + The Lord has answered our prayers and our church building will be reopening April 26th! + It is important that we take extreme precautionary measures to ensure that we keep + our congregation safe. Please review and abide by the guidelines below.


- live_tv Click here to watch online -

-

- headset Click here to listen online -

-

- insert_photo Click here for coronavirus encouragement -

+ info Click here for guidelines +

@@ -75,13 +70,17 @@
diff --git a/Client/src/app/components/home/home.component.ts b/Client/src/app/components/home/home.component.ts index c0f672a..94ce2f6 100644 --- a/Client/src/app/components/home/home.component.ts +++ b/Client/src/app/components/home/home.component.ts @@ -28,7 +28,7 @@ export class HomeComponent { return true; } public get showCallToAction(): boolean { - let maxDate = new Date(2019,6,8); // July 8th 2018 -- Set the month one month behind since JavaScript dates are 0 based + let maxDate = new Date(2020,11,31); // July 8th 2018 -- Set the month one month behind since JavaScript dates are 0 based let now = new Date(); if (now.getFullYear() > maxDate.getFullYear()) return false; if (now.getFullYear() == maxDate.getFullYear()) { @@ -53,6 +53,7 @@ export class HomeComponent { } public countdown: Countdown; + public showCountdown: boolean = false; constructor(private dialog: MatDialog, private http: HttpClient) { diff --git a/Client/src/assets/Reopening Church Guidelines.pdf b/Client/src/assets/Reopening Church Guidelines.pdf new file mode 100644 index 0000000..fa49a02 Binary files /dev/null and b/Client/src/assets/Reopening Church Guidelines.pdf differ diff --git a/Client/src/assets/images/home-images/tiny/sunset_b.jpg b/Client/src/assets/images/home-images/tiny/sunset_b.jpg index 98b6942..4d9ddd1 100644 Binary files a/Client/src/assets/images/home-images/tiny/sunset_b.jpg and b/Client/src/assets/images/home-images/tiny/sunset_b.jpg differ