Files
worldcup/app/manifest.ts
T

18 lines
520 B
TypeScript
Raw Normal View History

import type { MetadataRoute } from 'next'
export default function manifest(): MetadataRoute.Manifest {
return {
name: 'World Cup',
short_name: 'World Cup',
description: 'Comprehensive World Cup statistics from 1930 to 2026',
start_url: '/',
display: 'standalone',
background_color: '#040d08',
theme_color: '#040d08',
icons: [
{ src: '/icon-192x192.png', sizes: '192x192', type: 'image/png' },
{ src: '/icon-512x512.png', sizes: '512x512', type: 'image/png' },
],
}
}