Add PWA functionality (#1)

* Add PWA manifest

* Group with other link tags and remove self-closing

Co-authored-by: Jon Koops <jonkoops@gmail.com>

---------

Co-authored-by: Jon Koops <jonkoops@gmail.com>
This commit is contained in:
Isaac Hatton 2025-06-24 02:05:53 +01:00 committed by GitHub
parent 68a697ab45
commit f334a3b43c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View File

@ -22,6 +22,7 @@
<meta property="og:image" content="https://isle.pizza/island.webp">
<meta property="og:site_name" content="LEGO Island Web Port">
<link rel="manifest" href="manifest.json">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="canonical" href="https://isle.pizza">

13
manifest.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "LEGO® Island",
"icons": [
{
"src": "favicon.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": "/",
"display": "standalone",
"theme_color": "#000000"
}