@unlikeotherai/unloved 0.3.2 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/apple-touch-icon.png +0 -0
- package/public/icon-192.png +0 -0
- package/public/icon-512.png +0 -0
- package/public/index.html +10 -0
- package/public/manifest.json +21 -0
- package/public/og-image.png +0 -0
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/public/index.html
CHANGED
|
@@ -6,6 +6,16 @@
|
|
|
6
6
|
<meta name="theme-color" content="#0B0F19" media="(prefers-color-scheme: dark)" />
|
|
7
7
|
<meta name="theme-color" content="#F6F7F9" media="(prefers-color-scheme: light)" />
|
|
8
8
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
9
|
+
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
10
|
+
<link rel="manifest" href="/manifest.json" />
|
|
11
|
+
<meta property="og:type" content="website" />
|
|
12
|
+
<meta property="og:title" content="unloved" />
|
|
13
|
+
<meta property="og:description" content="Local multi-device AI coding cockpit" />
|
|
14
|
+
<meta property="og:image" content="/og-image.png" />
|
|
15
|
+
<meta name="twitter:card" content="summary_large_image" />
|
|
16
|
+
<meta name="twitter:title" content="unloved" />
|
|
17
|
+
<meta name="twitter:description" content="Local multi-device AI coding cockpit" />
|
|
18
|
+
<meta name="twitter:image" content="/og-image.png" />
|
|
9
19
|
<title>unloved</title>
|
|
10
20
|
<script type="module" crossorigin src="/assets/index-DQCs_QX1.js"></script>
|
|
11
21
|
<link rel="stylesheet" crossorigin href="/assets/index-ClJJPHXf.css">
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "unloved",
|
|
3
|
+
"short_name": "unloved",
|
|
4
|
+
"description": "Local multi-device AI coding cockpit",
|
|
5
|
+
"start_url": "/",
|
|
6
|
+
"display": "standalone",
|
|
7
|
+
"background_color": "#0B0F19",
|
|
8
|
+
"theme_color": "#0B0F19",
|
|
9
|
+
"icons": [
|
|
10
|
+
{
|
|
11
|
+
"src": "/icon-192.png",
|
|
12
|
+
"sizes": "192x192",
|
|
13
|
+
"type": "image/png"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"src": "/icon-512.png",
|
|
17
|
+
"sizes": "512x512",
|
|
18
|
+
"type": "image/png"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
Binary file
|