diff --git a/app/manifest.ts b/app/manifest.ts new file mode 100644 index 0000000..0d88ba6 --- /dev/null +++ b/app/manifest.ts @@ -0,0 +1,34 @@ +import { MetadataRoute } from 'next'; + +const manifest = (): MetadataRoute.Manifest => ({ + id: '/', + name: 'Lovemap ❤️', + short_name: 'Lovemap ❤️', + description: 'Keep all places where you made love', + start_url: '/', + display: 'standalone', + background_color: '#d94253', + theme_color: '#d94253', + icons: [ + { + src: '/logo.png', + sizes: '1024x1024', + type: 'image/png', + }, + { + src: '/logo-512.png', + sizes: '512x512', + type: 'image/png', + }, + { + src: '/logo-192.png', + sizes: '192x192', + type: 'image/png', + }, + ], + dir: 'ltr', + lang: 'fr-FR', + orientation: 'portrait', +}); + +export default manifest; diff --git a/public/logo-192.png b/public/logo-192.png new file mode 100644 index 0000000..370acef Binary files /dev/null and b/public/logo-192.png differ diff --git a/public/logo-512.png b/public/logo-512.png new file mode 100644 index 0000000..f948e0f Binary files /dev/null and b/public/logo-512.png differ