diff --git a/APP/angular.json b/APP/angular.json index dc67375..341dd64 100644 --- a/APP/angular.json +++ b/APP/angular.json @@ -45,7 +45,8 @@ ], "tsConfig": "tsconfig.app.json", "assets": [ - "src/assets" + "src/assets", + "src/manifest.webmanifest" ], "styles": [ "src/styles.scss", @@ -110,7 +111,8 @@ ], "tsConfig": "tsconfig.spec.json", "assets": [ - "src/assets" + "src/assets", + "src/manifest.webmanifest" ], "styles": [ "src/styles.scss", diff --git a/APP/src/assets/AppLogo-192.png b/APP/src/assets/AppLogo-192.png new file mode 100644 index 0000000..4ac937d Binary files /dev/null and b/APP/src/assets/AppLogo-192.png differ diff --git a/APP/src/assets/AppLogo-512.png b/APP/src/assets/AppLogo-512.png new file mode 100644 index 0000000..b569cdc Binary files /dev/null and b/APP/src/assets/AppLogo-512.png differ diff --git a/APP/src/index.html b/APP/src/index.html index f614947..38e1cbe 100644 --- a/APP/src/index.html +++ b/APP/src/index.html @@ -3,12 +3,14 @@ - ROLCC AC + Arcadia River of Life Christian Church + + diff --git a/APP/src/manifest.webmanifest b/APP/src/manifest.webmanifest new file mode 100644 index 0000000..864c925 --- /dev/null +++ b/APP/src/manifest.webmanifest @@ -0,0 +1,22 @@ +{ + "name": "River of Life Christian Church in Arcadia", + "short_name": "ROLCC AC", + "start_url": "/", + "display": "standalone", + "background_color": "#ffffff", + "theme_color": "#ffffff", + "icons": [ + { + "src": "assets/AppLogo-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "any" + }, + { + "src": "assets/AppLogo-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "any" + } + ] +} \ No newline at end of file