This commit is contained in:
2026-06-24 16:52:08 +02:00
commit 5abeb4fd48
53 changed files with 276551 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import type { MetadataRoute } from 'next'
const manifest = (): MetadataRoute.Manifest => {
return {
name: 'HSL Bike Helper',
short_name: 'HSL',
description: 'An app that makes prediction based on Open Data from the Helsinki Bike System.',
start_url: '/',
display: 'standalone',
background_color: '#ffffff',
theme_color: '#000000',
icons: [
{
src: '/icon-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/icon-512x512.png',
sizes: '512x512',
type: 'image/png',
},
],
}
}
export default manifest