added pwa manifest (for adding to home screen on iphone)
This commit is contained in:
BIN
React/public/icon-128x128.png
Normal file
BIN
React/public/icon-128x128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
BIN
React/public/icon-512x512.png
Normal file
BIN
React/public/icon-512x512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 87 KiB |
25
React/src/app/manifest.ts
Normal file
25
React/src/app/manifest.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import type { MetadataRoute } from 'next'
|
||||||
|
|
||||||
|
export default function manifest(): MetadataRoute.Manifest {
|
||||||
|
return {
|
||||||
|
name: 'Fauxcall',
|
||||||
|
short_name: 'Fauxcall',
|
||||||
|
description: 'A fake call app that helps you get out of awkward and dangerous situations.',
|
||||||
|
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',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user