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 +1 -1
- package/src/client/components/Header.tsx +5 -15
- package/src/client/index.html +4 -1
- package/src/client/public/android-chrome-192x192.png +0 -0
- package/src/client/public/android-chrome-512x512.png +0 -0
- package/src/client/public/apple-touch-icon.png +0 -0
- package/src/client/public/favicon-16x16.png +0 -0
- package/src/client/public/favicon-32x32.png +0 -0
- package/src/client/public/favicon.ico +0 -0
- package/src/client/public/site.webmanifest +11 -0
package/package.json
CHANGED
|
@@ -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
|
-
<
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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>
|
package/src/client/index.html
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="icon"
|
|
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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
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
|
+
}
|