linguabot commited on
Commit
deaa068
·
verified ·
1 Parent(s): 1b19953

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. client/src/components/Layout.tsx +3 -3
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-neonCyan">TransHub</Link>
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-1 ring-ui-neonBlue/35 shadow-[0_0_10px_rgba(14,165,233,0.45)]' : 'text-ui-text/80 hover:ring-1 hover:ring-ui-neonBlue/20'
181
  }`}
182
  >
183
- <item.icon className="h-5 w-5 mr-3 text-ui-neonCyan" />
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
  );