Add PWA manifest

This commit is contained in:
Isaac Hatton 2025-06-21 12:16:17 +00:00
parent 6459519e1e
commit 86a8e8d647
2 changed files with 15 additions and 0 deletions

View File

@ -22,6 +22,8 @@
<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"
}