From e9538b707f1eb4c6c914305c39b0a1530445044d Mon Sep 17 00:00:00 2001 From: Lars Lehmann <33843261+larsl-net@users.noreply.github.com> Date: Sun, 19 Jan 2025 11:36:28 +0100 Subject: [PATCH] Add basic PWA --- frontend/src/app.html | 1 + frontend/static/adventurelog.svg | 313 +++++++++++++++++++++++++++++++ frontend/static/manifest.json | 16 ++ 3 files changed, 330 insertions(+) create mode 100644 frontend/static/adventurelog.svg create mode 100644 frontend/static/manifest.json diff --git a/frontend/src/app.html b/frontend/src/app.html index f2516ae..1f4fe8f 100644 --- a/frontend/src/app.html +++ b/frontend/src/app.html @@ -4,6 +4,7 @@ + %sveltekit.head% diff --git a/frontend/static/adventurelog.svg b/frontend/static/adventurelog.svg new file mode 100644 index 0000000..92667f2 --- /dev/null +++ b/frontend/static/adventurelog.svg @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend/static/manifest.json b/frontend/static/manifest.json new file mode 100644 index 0000000..9f08d31 --- /dev/null +++ b/frontend/static/manifest.json @@ -0,0 +1,16 @@ +{ + "short_name": "AdventureLog", + "name": "AdventureLog", + "start_url": "/dashboard", + "icons": [ + { + "src": "adventurelog.svg", + "type": "image/svg+xml", + "sizes": "any" + } + ], + "background_color": "#2a323c", + "display": "standalone", + "scope": "/", + "description": "Self-hostable travel tracker and trip planner." +} \ No newline at end of file