import type { MetadataRoute } from 'next'; import { DESCRIPTION, SITE_NAME } from '@/lib/site'; export default function manifest(): MetadataRoute.Manifest { return { name: SITE_NAME, short_name: 'InternetPressure', description: DESCRIPTION, start_url: '/', display: 'standalone', background_color: '#070A0F', theme_color: '#070A0F', icons: [ { src: '/icon.png', sizes: '512x512', type: 'image/png' }, { src: '/apple-icon.png', sizes: '180x180', type: 'image/png' }, { src: '/icon.svg', sizes: 'any', type: 'image/svg+xml' }, ], }; }