summaryrefslogtreecommitdiff
path: root/public/manifest.json
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-05-16 12:23:30 +0200
committerYuval Adam <_@yuv.al>2025-05-16 12:23:30 +0200
commitb120b9ce4aa1e67df8330875e554087eb4b25061 (patch)
tree62efc2d27c2214a4a18ce04cb0401aadb9024ddd /public/manifest.json
parent0210b17a6d28a8c32fba498a7820e504f7c85a90 (diff)
New favicons
Diffstat (limited to 'public/manifest.json')
-rw-r--r--public/manifest.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/public/manifest.json b/public/manifest.json
new file mode 100644
index 0000000..015b025
--- /dev/null
+++ b/public/manifest.json
@@ -0,0 +1,44 @@
+{
+ "name": "CIDR Calculator",
+ "short_name": "CIDR.xyz",
+ "description": "Interactive visual CIDR and IP range calculator",
+ "start_url": "/",
+ "display": "standalone",
+ "background_color": "#ffffff",
+ "theme_color": "#0066cc",
+ "icons": [
+ {
+ "src": "/ico/favicon.ico",
+ "sizes": "48x48",
+ "type": "image/x-icon"
+ },
+ {
+ "src": "/ico/icon-192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "/ico/icon-192-maskable.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "purpose": "maskable"
+ },
+ {
+ "src": "/ico/icon-512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ },
+ {
+ "src": "/ico/icon-512-maskable.png",
+ "sizes": "512x512",
+ "type": "image/png",
+ "purpose": "maskable"
+ },
+ {
+ "src": "/ico/apple-touch-icon.png",
+ "sizes": "180x180",
+ "type": "image/png",
+ "purpose": "apple-touch-icon"
+ }
+ ]
+}