feat: add Client billing fields to store, /clients route, and reorder NavRail

This commit is contained in:
Your Name
2026-02-17 22:54:31 +02:00
parent 5ab96769ac
commit c949a08981
3 changed files with 128 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ import { useTimerStore } from '../stores/timer'
import {
LayoutDashboard,
Clock,
Users,
FolderKanban,
List,
BarChart3,
@@ -19,10 +20,11 @@ const timerStore = useTimerStore()
const navItems = [
{ name: 'Dashboard', path: '/', icon: LayoutDashboard },
{ name: 'Timer', path: '/timer', icon: Clock },
{ name: 'Clients', path: '/clients', icon: Users },
{ name: 'Projects', path: '/projects', icon: FolderKanban },
{ name: 'Entries', path: '/entries', icon: List },
{ name: 'Reports', path: '/reports', icon: BarChart3 },
{ name: 'Invoices', path: '/invoices', icon: FileText },
{ name: 'Reports', path: '/reports', icon: BarChart3 },
{ name: 'Settings', path: '/settings', icon: Settings }
]