From a79b874a7e25be8d89e2ed64018f273401fa9c17 Mon Sep 17 00:00:00 2001 From: Tony M Date: Sat, 4 Jul 2026 11:33:41 -0700 Subject: [PATCH] Add web manifest for PWA installability Add manifest.json with theme color, icons, and app metadata. Linked from both index.html and schedule.html. --- manifest.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 manifest.json diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..9be511d --- /dev/null +++ b/manifest.json @@ -0,0 +1,28 @@ +{ + "name": "Shiloh Echo '26 — Christian Family Retreat", + "short_name": "Shiloh Echo", + "description": "3-day Christian family retreat in North Idaho, Sept 11–13, 2026.", + "start_url": "/", + "display": "standalone", + "background_color": "#fff5ec", + "theme_color": "#1a3a2e", + "icons": [ + { + "src": "https://cdn.lasthourhosting.org/assets/favicon.ico", + "sizes": "any", + "type": "image/x-icon" + }, + { + "src": "https://cdn.lasthourhosting.org/assets/web-header.webp", + "sizes": "192x192", + "type": "image/webp", + "purpose": "any" + }, + { + "src": "https://cdn.lasthourhosting.org/assets/web-header.webp", + "sizes": "512x512", + "type": "image/webp", + "purpose": "any" + } + ] +} \ No newline at end of file