This commit is contained in:
Enrico Ros
2023-04-21 00:59:46 -07:00
parent 8f572f32b8
commit 9f07c6200e
12 changed files with 19 additions and 11 deletions
+6
View File
@@ -17,8 +17,14 @@ export default function MyDocument({ emotionStyleTags }: MyDocumentProps) {
<Html lang='en' className={bodyFontClassName}>
<Head>
<link rel='shortcut icon' href='/favicon.ico' />
<link rel='icon' type='image/png' sizes='32x32' href='/icons/favicon-32x32.png' />
<link rel='icon' type='image/png' sizes='16x16' href='/icons/favicon-16x16.png' />
<link rel='apple-touch-icon' sizes='180x180' href='/icons/apple-touch-icon.png' />
<link rel='manifest' href='/manifest.json' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='black' />
{/* Style Sheets (injected and server-side) */}
<meta name='emotion-insertion-point' content='' />
{emotionStyleTags}
</Head>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 993 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

+13 -11
View File
@@ -1,25 +1,27 @@
{
"name": "GPT",
"short_name": "GPT",
"name": "big-AGI",
"short_name": "AGI",
"theme_color": "#434356",
"background_color": "#B9B9C6",
"description": "Personal AGI App",
"display": "standalone",
"start_url": "/",
"icons": [
{
"src": "/icon-192x192.png",
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon-512x512.png",
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "/icon-1024x1024.png",
"src": "/icons/icon-1024x1024.png",
"sizes": "1024x1024",
"type": "image/png"
}
],
"start_url": "/",
"display": "standalone",
"background_color": "#B9B9C6",
"theme_color": "#434356"
]
}