@featurevisor/site 2.1.2 → 2.6.0
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/CHANGELOG.md +19 -0
- package/dist/favicon-256.png +0 -0
- package/dist/index.html +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/logo-text.png +0 -0
- package/package.json +3 -3
- package/public/favicon-256.png +0 -0
- package/public/index.html +1 -1
- package/public/logo-text.png +0 -0
- package/src/components/Header.tsx +7 -1
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@featurevisor/site",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "Static site for Featurevisor",
|
|
5
5
|
"main": "dist",
|
|
6
6
|
"scripts": {
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"webpack-merge": "^5.10.0"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@featurevisor/types": "2.
|
|
62
|
+
"@featurevisor/types": "2.6.0"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "e5dafb8a51d7653e35fe17cacc0c14d7e95f69d0"
|
|
65
65
|
}
|
|
Binary file
|
package/public/index.html
CHANGED
|
Binary file
|
|
@@ -28,9 +28,15 @@ export function Header() {
|
|
|
28
28
|
<Link to="/" className="text-gray-50">
|
|
29
29
|
<img
|
|
30
30
|
alt="Featurevisor"
|
|
31
|
-
src="/favicon-
|
|
31
|
+
src="/favicon-256.png"
|
|
32
32
|
className="absolute top-4 -ml-2 w-[36px]"
|
|
33
33
|
/>
|
|
34
|
+
|
|
35
|
+
<img
|
|
36
|
+
alt="Featurevisor"
|
|
37
|
+
src="/logo-text.png"
|
|
38
|
+
className="absolute top-[26px] pl-[50px] -ml-2 w-[220px] hidden md:inline-block"
|
|
39
|
+
/>
|
|
34
40
|
</Link>
|
|
35
41
|
|
|
36
42
|
<div className="relative flex gap-x-4">
|