flowbook 0.2.4 → 0.2.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbook",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "flowbook": "./dist/cli.js"
@@ -12,21 +12,11 @@ export function Header({
12
12
  return (
13
13
  <header className="h-14 border-b border-zinc-800 flex items-center px-4 gap-4 shrink-0 bg-zinc-950">
14
14
  <div className="flex items-center gap-2.5">
15
- <svg
16
- className="w-6 h-6 text-violet-400"
17
- viewBox="0 0 24 24"
18
- fill="none"
19
- stroke="currentColor"
20
- strokeWidth="2"
21
- strokeLinecap="round"
22
- strokeLinejoin="round"
23
- >
24
- <rect x="3" y="3" width="7" height="7" rx="1" />
25
- <rect x="14" y="3" width="7" height="7" rx="1" />
26
- <rect x="8" y="14" width="7" height="7" rx="1" />
27
- <path d="M6.5 10v1.5a1 1 0 0 0 1 1h9a1 1 0 0 0 1-1V10" />
28
- <path d="M11.5 12.5V14" />
29
- </svg>
15
+ <img
16
+ src="/favicon-32x32.png"
17
+ alt="Flowbook"
18
+ className="w-6 h-6"
19
+ />
30
20
  <h1 className="text-lg font-semibold tracking-tight text-zinc-100">
31
21
  Flowbook
32
22
  </h1>
@@ -2,7 +2,10 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
- <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>📊</text></svg>" />
5
+ <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
6
+ <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
7
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
8
+ <link rel="manifest" href="/site.webmanifest" />
6
9
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
10
  <title>Flowbook</title>
8
11
  </head>
Binary file
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "Flowbook",
3
+ "short_name": "Flowbook",
4
+ "icons": [
5
+ { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" },
6
+ { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" }
7
+ ],
8
+ "theme_color": "#ffffff",
9
+ "background_color": "#ffffff",
10
+ "display": "standalone"
11
+ }