From 109f42ee9b3c9ff004dc87b0143aa92c31eff41f Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Fri, 23 Jul 2021 15:38:54 +0200 Subject: [PATCH] Add basic web scaffolding --- web/index.html | 98 +++++++++++++++++++++++++++++++++++++++++++++++ web/manifest.json | 23 +++++++++++ 2 files changed, 121 insertions(+) create mode 100644 web/index.html create mode 100644 web/manifest.json diff --git a/web/index.html b/web/index.html new file mode 100644 index 00000000..a4560196 --- /dev/null +++ b/web/index.html @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + GitJournal + + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 00000000..358f8fb9 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,23 @@ +{ + "name": "GitJournal", + "short_name": "GitJournal", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + } + ] +}