diff --git a/React/public/icon-128x128.png b/React/public/icon-128x128.png new file mode 100644 index 0000000..a0ffe32 Binary files /dev/null and b/React/public/icon-128x128.png differ diff --git a/React/public/icon-512x512.png b/React/public/icon-512x512.png new file mode 100644 index 0000000..cb560a1 Binary files /dev/null and b/React/public/icon-512x512.png differ diff --git a/React/src/app/manifest.ts b/React/src/app/manifest.ts new file mode 100644 index 0000000..1727948 --- /dev/null +++ b/React/src/app/manifest.ts @@ -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', + }, + ], + } +} \ No newline at end of file