From 9b34df76ba0310130b5f2b342bec38d4d27caba6 Mon Sep 17 00:00:00 2001 From: Alexej Wolff Date: Wed, 11 Feb 2026 01:11:36 +0100 Subject: [PATCH] feat: PWA support for iOS --- index.html | 21 +++++++++++++++++---- public/manifest.json | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 public/manifest.json diff --git a/index.html b/index.html index ef2c16f..d4d5549 100644 --- a/index.html +++ b/index.html @@ -1,10 +1,23 @@ - + - - - resekai + + ReSekai + + + + + + + + + + + + + +
diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..2688a37 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,34 @@ +{ + "name": "ReSekai", + "short_name": "ReSekai", + "description": "Интерактивные истории с ИИ", + "start_url": "/", + "display": "standalone", + "background_color": "#0d0d0d", + "theme_color": "#667eea", + "orientation": "portrait", + "icons": [ + { + "src": "/icons/icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/icons/icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "/icons/icon-192-maskable.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/icons/icon-512-maskable.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +}