add hub menagment functions

This commit is contained in:
gitGnome
2026-04-29 14:46:22 +02:00
parent 221fb47495
commit 6378966267
19 changed files with 780 additions and 62 deletions
+6 -5
View File
@@ -1,3 +1,4 @@
import { Link } from 'react-router-dom'
import { useApp } from '../context/AppContext'
import { colorToCss } from '../utils/color'
@@ -16,13 +17,13 @@ export default function UserBar() {
<span className="text-sm font-medium text-gray-200 truncate flex-1">
{user?.name ?? '…'}
</span>
<button
title="Settings (coming soon)"
disabled
className="text-gray-600 cursor-not-allowed text-base px-1"
<Link
to="/settings"
title="Settings"
className="text-gray-400 hover:text-gray-200 transition-colors text-base px-1"
>
</button>
</Link>
</div>
)
}