Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 03:16:47 +00:00
co-authored by renee-png
parent 54617504b4
commit 4bb151d205
2 changed files with 22 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ interface NavItem {
const NAV: NavItem[] = [
{ to: "/", label: "Dashboard", icon: LayoutDashboard },
{ to: "/calendar", label: "Calendar", icon: CalendarIcon },
{ to: "/clients", label: "Clients", icon: Users },
{ to: "/cases", label: "Cases", icon: Briefcase },
{ to: "/invoices", label: "Invoices", icon: Receipt },
+21
View File
@@ -24,6 +24,7 @@ import { Route as ContactsIndexRouteImport } from './routes/contacts.index'
import { Route as CollectionsIndexRouteImport } from './routes/collections.index'
import { Route as ClientsIndexRouteImport } from './routes/clients.index'
import { Route as CasesIndexRouteImport } from './routes/cases.index'
import { Route as CalendarIndexRouteImport } from './routes/calendar.index'
import { Route as SettingsWorkflowsRouteImport } from './routes/settings.workflows'
import { Route as SettingsWorkflowRouteImport } from './routes/settings.workflow'
import { Route as SettingsProfileRouteImport } from './routes/settings.profile'
@@ -115,6 +116,11 @@ const CasesIndexRoute = CasesIndexRouteImport.update({
path: '/cases/',
getParentRoute: () => rootRouteImport,
} as any)
const CalendarIndexRoute = CalendarIndexRouteImport.update({
id: '/calendar/',
path: '/calendar/',
getParentRoute: () => rootRouteImport,
} as any)
const SettingsWorkflowsRoute = SettingsWorkflowsRouteImport.update({
id: '/workflows',
path: '/workflows',
@@ -208,6 +214,7 @@ export interface FileRoutesByFullPath {
'/settings/profile': typeof SettingsProfileRoute
'/settings/workflow': typeof SettingsWorkflowRoute
'/settings/workflows': typeof SettingsWorkflowsRoute
'/calendar/': typeof CalendarIndexRoute
'/cases/': typeof CasesIndexRoute
'/clients/': typeof ClientsIndexRoute
'/collections/': typeof CollectionsIndexRoute
@@ -239,6 +246,7 @@ export interface FileRoutesByTo {
'/settings/profile': typeof SettingsProfileRoute
'/settings/workflow': typeof SettingsWorkflowRoute
'/settings/workflows': typeof SettingsWorkflowsRoute
'/calendar': typeof CalendarIndexRoute
'/cases': typeof CasesIndexRoute
'/clients': typeof ClientsIndexRoute
'/collections': typeof CollectionsIndexRoute
@@ -272,6 +280,7 @@ export interface FileRoutesById {
'/settings/profile': typeof SettingsProfileRoute
'/settings/workflow': typeof SettingsWorkflowRoute
'/settings/workflows': typeof SettingsWorkflowsRoute
'/calendar/': typeof CalendarIndexRoute
'/cases/': typeof CasesIndexRoute
'/clients/': typeof ClientsIndexRoute
'/collections/': typeof CollectionsIndexRoute
@@ -306,6 +315,7 @@ export interface FileRouteTypes {
| '/settings/profile'
| '/settings/workflow'
| '/settings/workflows'
| '/calendar/'
| '/cases/'
| '/clients/'
| '/collections/'
@@ -337,6 +347,7 @@ export interface FileRouteTypes {
| '/settings/profile'
| '/settings/workflow'
| '/settings/workflows'
| '/calendar'
| '/cases'
| '/clients'
| '/collections'
@@ -369,6 +380,7 @@ export interface FileRouteTypes {
| '/settings/profile'
| '/settings/workflow'
| '/settings/workflows'
| '/calendar/'
| '/cases/'
| '/clients/'
| '/collections/'
@@ -398,6 +410,7 @@ export interface RootRouteChildren {
CollectionsCollectionIdRoute: typeof CollectionsCollectionIdRoute
ContactsContactIdRoute: typeof ContactsContactIdRoute
InvoicesInvoiceIdRoute: typeof InvoicesInvoiceIdRoute
CalendarIndexRoute: typeof CalendarIndexRoute
CasesIndexRoute: typeof CasesIndexRoute
ClientsIndexRoute: typeof ClientsIndexRoute
CollectionsIndexRoute: typeof CollectionsIndexRoute
@@ -521,6 +534,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof CasesIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/calendar/': {
id: '/calendar/'
path: '/calendar'
fullPath: '/calendar/'
preLoaderRoute: typeof CalendarIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/settings/workflows': {
id: '/settings/workflows'
path: '/workflows'
@@ -661,6 +681,7 @@ const rootRouteChildren: RootRouteChildren = {
CollectionsCollectionIdRoute: CollectionsCollectionIdRoute,
ContactsContactIdRoute: ContactsContactIdRoute,
InvoicesInvoiceIdRoute: InvoicesInvoiceIdRoute,
CalendarIndexRoute: CalendarIndexRoute,
CasesIndexRoute: CasesIndexRoute,
ClientsIndexRoute: ClientsIndexRoute,
CollectionsIndexRoute: CollectionsIndexRoute,