Herping the derp

This commit is contained in:
2023-05-19 02:28:46 +03:00
parent 6f43e6265a
commit 3ea75d83d2
33 changed files with 187 additions and 105 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

BIN
public/icon-192x192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
public/icon-256x256.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
public/icon-384x384.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
public/icon-512x512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -2,16 +2,20 @@
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Nix13">
<link rel="apple-touch-icon" href="./favicon.png">
<meta name="apple-mobile-web-app-title" content="nix13.pw">
<meta name="application-name" content="Nix13">
<meta name="theme-color" content="#ff00ff">
<meta name="theme-color" content="#222222">
<link sizes="512x512" href="./favicon.png">
<link sizes="192x192" href="./icon-192x192.png">
<link sizes="256x256" href="./icon-256x256.png">
<link sizes="384x384" href="./icon-384x384.png">
<link sizes="512x512" href="./icon-512x512.png">
<link rel="shortcut icon" href="./icon-512x512.png" type="image/png">
<link rel="apple-touch-icon" href="./icon-192x192.png">
<link rel="manifest" href="./manifest.webmanifest">
<!-- FontAwesome -->

View File

@@ -1,11 +1,26 @@
{
"short_name": "Nix13",
"name": "Nix13",
"theme_color": "#222222",
"background_color": "#222222",
"display": "browser",
"scope": "/",
"start_url": "/",
"name": "Nix13 website",
"short_name": "Nix13 website",
"icons": [{
"src": "favicon.png",
"sizes": "512x512",
"type": "image/png"
}],
"display": "fullscreen",
"start_url": "/"
"src": "/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},{
"src": "/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
}, {
"src": "/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
}, {
"src": "/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}]
}