Files
HabitTrove/app/manifest.ts
2025-01-15 20:07:23 -05:00

26 lines
603 B
TypeScript

import type { MetadataRoute } from 'next'
export default function manifest(): MetadataRoute.Manifest {
return {
name: 'HabitTrove',
short_name: 'HabitTrove',
description: 'Gamified habit tracking application',
start_url: '/',
display: 'standalone',
background_color: '#ffffff',
theme_color: '#000000',
icons: [
{
src: '/icons/web-app-manifest-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/icons/web-app-manifest-512x512.png',
sizes: '512x512',
type: 'image/png',
},
],
}
}