35 lines
644 B
TypeScript
35 lines
644 B
TypeScript
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-transparent.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;
|