Files
kozmos-web/app/manifest.ts
T
2026-06-03 03:59:46 +03:00

26 lines
564 B
TypeScript

import { MetadataRoute } from 'next';
export default function manifest(): MetadataRoute.Manifest {
return {
name: 'Kozmos Beach & More',
short_name: 'Kozmos',
description: 'Where the Sea Meets the Forest',
start_url: '/',
display: 'standalone',
background_color: '#F5F0E8',
theme_color: '#4AAFA8',
icons: [
{
src: '/icon-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/icon-512x512.png',
sizes: '512x512',
type: 'image/png',
},
],
};
}