helixevo 0.2.31 → 0.2.32
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/dashboard/app/layout.tsx +17 -6
- package/package.json +1 -1
package/dashboard/app/layout.tsx
CHANGED
|
@@ -62,13 +62,24 @@ export default function RootLayout({ children }: { children: React.ReactNode })
|
|
|
62
62
|
</div>
|
|
63
63
|
|
|
64
64
|
{/* Footer */}
|
|
65
|
-
<div className="sidebar-footer">
|
|
66
|
-
<div style={{ display: 'flex', alignItems: 'center',
|
|
67
|
-
<div style={{
|
|
68
|
-
|
|
65
|
+
<div className="sidebar-footer" style={{ flexDirection: 'column', gap: 8 }}>
|
|
66
|
+
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', width: '100%' }}>
|
|
67
|
+
<div style={{ display: 'flex', alignItems: 'center', gap: 6 }}>
|
|
68
|
+
<div style={{ width: 6, height: 6, borderRadius: '50%', background: 'var(--green)' }} />
|
|
69
|
+
<span>System Active</span>
|
|
70
|
+
</div>
|
|
71
|
+
<code style={{ fontSize: 10, background: 'var(--bg-section)', padding: '2px 7px', borderRadius: 4, color: 'var(--text-dim)' }}>v{VERSION}</code>
|
|
69
72
|
</div>
|
|
70
|
-
<Link href="/changelog" style={{
|
|
71
|
-
|
|
73
|
+
<Link href="/changelog" style={{
|
|
74
|
+
textDecoration: 'none', display: 'flex', alignItems: 'center', gap: 5,
|
|
75
|
+
fontSize: 10, color: 'var(--text-muted)', width: '100%',
|
|
76
|
+
padding: '4px 0', transition: 'color 0.15s',
|
|
77
|
+
}}>
|
|
78
|
+
<svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
|
|
79
|
+
<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z" />
|
|
80
|
+
<path d="M14 2v6h6M16 13H8M16 17H8M10 9H8" />
|
|
81
|
+
</svg>
|
|
82
|
+
Changelog
|
|
72
83
|
</Link>
|
|
73
84
|
</div>
|
|
74
85
|
</nav>
|
package/package.json
CHANGED