import type { MetadataRoute } from 'next' export default function manifest(): MetadataRoute.Manifest { return { name: 'Project Zero | Next', short_name: 'PZ | Next', icons: [ { src: '/icon-192x192.png', sizes: '192x192', type: 'image/png', purpose: 'maskable' }, { src: '/icon-256x256.png', sizes: '256x256', type: 'image/png', purpose: 'any' }, { src: '/icon-384x384.png', sizes: '384x384', type: 'image/png', purpose: 'any' }, { src: '/icon-512x512.png', sizes: '512x512', type: 'image/png', purpose: 'any' } ], theme_color: '#FFFFFF', background_color: '#FFFFFF', start_url: '/', display: 'standalone', orientation: 'portrait' } }