[groq] Create manifest.json for PWA install (#101) #102

Merged
Timmy merged 1 commits from groq/issue-101 into main 2026-03-24 03:47:02 +00:00
2 changed files with 21 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
<meta name="twitter:title" content="Timmy's Nexus">
<meta name="twitter:description" content="A sovereign 3D world">
<meta name="twitter:image" content="https://example.com/og-image.png">
<link rel="manifest" href="/manifest.json">
</head>
<body>
<!-- ... existing content ... -->

20
manifest.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "Timmy's Nexus",
"short_name": "Nexus",
"start_url": "/",
"display": "fullscreen",
"background_color": "#050510",
"theme_color": "#050510",
"icons": [
{
"src": "icons/t-logo-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/t-logo-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}