Skip to content

Commit e2fb4c6

Browse files
committed
🤖 feat: add favicon and PWA icon
- Add public/favicon.ico (16/32/48px multi-resolution ICO) - Add public/icon.png (512px for PWA manifest + apple-touch-icon) - Update index.html to reference favicon.ico and icon.png - Update manifest.json to use icon.png _Generated with `mux`_
1 parent f94eaae commit e2fb4c6

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<meta name="description" content="Parallel agentic development with Electron + React" />
1010
<meta name="theme-color" content="#1e1e1e" />
1111
<link rel="manifest" href="/manifest.json" />
12-
<link rel="apple-touch-icon" href="/icon-192.png" />
12+
<link rel="icon" href="/favicon.ico" />
13+
<link rel="apple-touch-icon" href="/icon.png" />
1314
<title>mux - coder multiplexer</title>
1415
<style>
1516
body {

public/favicon.ico

14.7 KB
Binary file not shown.

public/icon.png

35.4 KB
Loading

public/manifest.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,7 @@
99
"orientation": "any",
1010
"icons": [
1111
{
12-
"src": "/icon-192.png",
13-
"sizes": "192x192",
14-
"type": "image/png",
15-
"purpose": "any maskable"
16-
},
17-
{
18-
"src": "/icon-512.png",
12+
"src": "/icon.png",
1913
"sizes": "512x512",
2014
"type": "image/png",
2115
"purpose": "any maskable"

0 commit comments

Comments
 (0)