first commit

This commit is contained in:
mstfyldz
2026-06-03 03:59:46 +03:00
parent 5882fc12c1
commit bba389b513
30 changed files with 3153 additions and 149 deletions
+25
View File
@@ -0,0 +1,25 @@
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',
},
],
};
}