feat(frontend: adjust favicons and webapp manifest

This commit is contained in:
Viren070
2025-09-26 00:52:44 +01:00
parent c11690c22b
commit 04eef19cbc
14 changed files with 16 additions and 10 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 473 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 848 B

+3
View File
@@ -15,6 +15,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<head>
<meta name="apple-mobile-web-app-title" content="AIOStreams" />
</head>
<body className={inter.className}>{children}</body>
</html>
);
+7 -5
View File
@@ -3,18 +3,20 @@
"short_name": "AIO",
"icons": [
{
"src": "/android-chrome-192x192.png",
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/android-chrome-512x512.png",
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"start_url": ".",
"background_color": "black",
"background_color": "#000000",
"display": "standalone"
}
+5 -5
View File
@@ -143,11 +143,11 @@ app.get(
'/favicon.ico',
'/logo.png',
'/manifest.json',
'/android-chrome-192x192.png',
'/android-chrome-512x512.png',
'/apple-touch-icon.png',
'/favicon-16x16.png',
'/favicon-32x32.png',
'/web-app-manifest-192x192.png',
'/web-app-manifest-512x512.png',
'/apple-icon.png',
'/icon0.svg',
'/icon1.png',
],
staticRateLimiter,
(req, res, next) => {