From 4bb151d205f7ede4dc8993a3ac321fe3af1ad121 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 03:16:47 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/app-shell.tsx | 1 + src/routeTree.gen.ts | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx index e532ac3..f619313 100644 --- a/src/components/app-shell.tsx +++ b/src/components/app-shell.tsx @@ -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 }, diff --git a/src/routeTree.gen.ts b/src/routeTree.gen.ts index 9025e4a..b8b1b2f 100644 --- a/src/routeTree.gen.ts +++ b/src/routeTree.gen.ts @@ -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,