Upload folder using huggingface_hub
Browse files
client/src/components/Layout.tsx
CHANGED
|
@@ -160,7 +160,7 @@ const Layout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
|
|
| 160 |
{/* Top Bar */}
|
| 161 |
<header className="sticky top-0 z-40 bg-ui-panel/80 backdrop-blur border-b border-ui-border">
|
| 162 |
<div className="px-4 sm:px-6 lg:px-8 h-14 flex items-center justify-between">
|
| 163 |
-
<Link to="/dashboard" className="text-lg font-bold text-ui-
|
| 164 |
<div />
|
| 165 |
</div>
|
| 166 |
</header>
|
|
@@ -177,10 +177,10 @@ const Layout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
|
|
| 177 |
key={item.name}
|
| 178 |
to={item.href}
|
| 179 |
className={`flex items-center px-3 py-2 rounded-lg text-[0.95rem] font-medium transition-colors ${
|
| 180 |
-
isActive ? 'bg-transparent text-ui-text ring-
|
| 181 |
}`}
|
| 182 |
>
|
| 183 |
-
<item.icon className="h-5 w-5 mr-3 text-
|
| 184 |
<span>{item.name}</span>
|
| 185 |
</Link>
|
| 186 |
);
|
|
|
|
| 160 |
{/* Top Bar */}
|
| 161 |
<header className="sticky top-0 z-40 bg-ui-panel/80 backdrop-blur border-b border-ui-border">
|
| 162 |
<div className="px-4 sm:px-6 lg:px-8 h-14 flex items-center justify-between">
|
| 163 |
+
<Link to="/dashboard" className="text-lg font-bold text-ui-neonBlue">TransHub</Link>
|
| 164 |
<div />
|
| 165 |
</div>
|
| 166 |
</header>
|
|
|
|
| 177 |
key={item.name}
|
| 178 |
to={item.href}
|
| 179 |
className={`flex items-center px-3 py-2 rounded-lg text-[0.95rem] font-medium transition-colors ${
|
| 180 |
+
isActive ? 'bg-transparent text-ui-text ring-2 ring-ui-neonBlue shadow-[0_0_8px_rgba(14,165,233,0.35)]' : 'text-ui-text/80 hover:ring-1 hover:ring-ui-neonBlue/25'
|
| 181 |
}`}
|
| 182 |
>
|
| 183 |
+
<item.icon className="h-5 w-5 mr-3 text-current" />
|
| 184 |
<span>{item.name}</span>
|
| 185 |
</Link>
|
| 186 |
);
|