feat: dashbaord overview

This commit is contained in:
Nathnael
2026-08-13 18:13:42 +00:00
parent 89cdc0ad06
commit 147887b7c5
23 changed files with 1795 additions and 94 deletions

View File

@@ -200,6 +200,8 @@ export const QUERY_KEYS = {
["overview", "billing", range ?? "30d"] as const,
operationsTab: (range?: string) =>
["overview", "operations", range ?? "30d"] as const,
fleetTab: (range?: string) => ["overview", "fleet", range ?? "30d"] as const,
clearanceTab: () => ["overview", "clearance"] as const,
customersTab: (range?: string) =>
["overview", "customers", range ?? "30d"] as const,
staffTab: (range?: string) =>

View File

@@ -139,6 +139,8 @@ export const URL_CONSTANTS = {
CONTRACTS: "/overview/contracts",
BILLING: "/overview/billing",
OPERATIONS: "/overview/operations",
FLEET: "/overview/fleet",
CLEARANCE: "/overview/clearance",
CUSTOMERS: "/overview/customers",
STAFF: "/overview/staff",
},