feat: add PWA manifest and viewport configuration

This commit is contained in:
Hördle Bot
2025-11-21 17:52:31 +01:00
parent b9cebd46d5
commit f4e953ecd1
2 changed files with 28 additions and 1 deletions

20
app/manifest.ts Normal file
View File

@@ -0,0 +1,20 @@
import type { MetadataRoute } from 'next'
export default function manifest(): MetadataRoute.Manifest {
return {
name: 'Hördle',
short_name: 'Hördle',
description: 'Daily music guessing game - Guess the song from short audio clips',
start_url: '/',
display: 'standalone',
background_color: '#ffffff',
theme_color: '#000000',
icons: [
{
src: '/favicon.ico',
sizes: 'any',
type: 'image/x-icon',
},
],
}
}