Fix dark mode light boxes, add client dashboard stats, reorder nav

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Krao Hasanee
2026-03-27 00:47:06 -04:00
parent 71b34a4700
commit aeaf6558ac
3 changed files with 66 additions and 18 deletions
+1 -1
View File
@@ -25,9 +25,9 @@ function ClientNav({ onNav }) {
<div className="sidebar-section">
<div className="sidebar-section-label">My Work</div>
{[
{ to: '/my-company', label: 'Company' },
{ to: '/my-projects', label: 'Projects' },
{ to: '/my-invoices', label: 'Invoices' },
{ to: '/my-company', label: 'Company' },
].map(({ to, label }) => (
<NavLink key={to} to={to} onClick={onNav} className={({ isActive }) => `sidebar-link${isActive ? ' active' : ''}`}>
{label}