Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-26 08:15:01 +00:00
co-authored by renee-png
parent d14b0cff42
commit f0ec108548
2 changed files with 23 additions and 0 deletions
+2
View File
@@ -24,6 +24,7 @@ import {
CreditCard,
Archive as ArchiveIcon,
BarChart3,
CalendarClock,
} from "lucide-react";
import { cn } from "@/lib/utils";
import type { ReactNode } from "react";
@@ -56,6 +57,7 @@ const NAV: NavItem[] = (() => {
{ to: "/invoices", label: "Invoices", icon: Receipt },
{ to: "/messages", label: "Messages", icon: MessageSquare },
{ to: "/payments", label: "Payments", icon: CreditCard },
{ to: "/payment-plans", label: "Payment plans", icon: CalendarClock },
{ to: "/documents", label: "Pleadings", icon: FolderOpen },
{ to: "/reports", label: "Reports", icon: BarChart3 },
{ to: "/status", label: "Status Updates", icon: Activity },
+21
View File
@@ -18,6 +18,7 @@ import { Route as StatusIndexRouteImport } from './routes/status.index'
import { Route as SettingsIndexRouteImport } from './routes/settings.index'
import { Route as ReportsIndexRouteImport } from './routes/reports.index'
import { Route as PaymentsIndexRouteImport } from './routes/payments.index'
import { Route as PaymentPlansIndexRouteImport } from './routes/payment-plans.index'
import { Route as MessagesIndexRouteImport } from './routes/messages.index'
import { Route as InvoicesIndexRouteImport } from './routes/invoices.index'
import { Route as InboxIndexRouteImport } from './routes/inbox.index'
@@ -113,6 +114,11 @@ const PaymentsIndexRoute = PaymentsIndexRouteImport.update({
path: '/payments/',
getParentRoute: () => rootRouteImport,
} as any)
const PaymentPlansIndexRoute = PaymentPlansIndexRouteImport.update({
id: '/payment-plans/',
path: '/payment-plans/',
getParentRoute: () => rootRouteImport,
} as any)
const MessagesIndexRoute = MessagesIndexRouteImport.update({
id: '/messages/',
path: '/messages/',
@@ -407,6 +413,7 @@ export interface FileRoutesByFullPath {
'/inbox/': typeof InboxIndexRoute
'/invoices/': typeof InvoicesIndexRoute
'/messages/': typeof MessagesIndexRoute
'/payment-plans/': typeof PaymentPlansIndexRoute
'/payments/': typeof PaymentsIndexRoute
'/reports/': typeof ReportsIndexRoute
'/settings/': typeof SettingsIndexRoute
@@ -466,6 +473,7 @@ export interface FileRoutesByTo {
'/inbox': typeof InboxIndexRoute
'/invoices': typeof InvoicesIndexRoute
'/messages': typeof MessagesIndexRoute
'/payment-plans': typeof PaymentPlansIndexRoute
'/payments': typeof PaymentsIndexRoute
'/reports': typeof ReportsIndexRoute
'/settings': typeof SettingsIndexRoute
@@ -527,6 +535,7 @@ export interface FileRoutesById {
'/inbox/': typeof InboxIndexRoute
'/invoices/': typeof InvoicesIndexRoute
'/messages/': typeof MessagesIndexRoute
'/payment-plans/': typeof PaymentPlansIndexRoute
'/payments/': typeof PaymentsIndexRoute
'/reports/': typeof ReportsIndexRoute
'/settings/': typeof SettingsIndexRoute
@@ -589,6 +598,7 @@ export interface FileRouteTypes {
| '/inbox/'
| '/invoices/'
| '/messages/'
| '/payment-plans/'
| '/payments/'
| '/reports/'
| '/settings/'
@@ -648,6 +658,7 @@ export interface FileRouteTypes {
| '/inbox'
| '/invoices'
| '/messages'
| '/payment-plans'
| '/payments'
| '/reports'
| '/settings'
@@ -708,6 +719,7 @@ export interface FileRouteTypes {
| '/inbox/'
| '/invoices/'
| '/messages/'
| '/payment-plans/'
| '/payments/'
| '/reports/'
| '/settings/'
@@ -759,6 +771,7 @@ export interface RootRouteChildren {
InboxIndexRoute: typeof InboxIndexRoute
InvoicesIndexRoute: typeof InvoicesIndexRoute
MessagesIndexRoute: typeof MessagesIndexRoute
PaymentPlansIndexRoute: typeof PaymentPlansIndexRoute
PaymentsIndexRoute: typeof PaymentsIndexRoute
ReportsIndexRoute: typeof ReportsIndexRoute
StatusIndexRoute: typeof StatusIndexRoute
@@ -839,6 +852,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof PaymentsIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/payment-plans/': {
id: '/payment-plans/'
path: '/payment-plans'
fullPath: '/payment-plans/'
preLoaderRoute: typeof PaymentPlansIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/messages/': {
id: '/messages/'
path: '/messages'
@@ -1276,6 +1296,7 @@ const rootRouteChildren: RootRouteChildren = {
InboxIndexRoute: InboxIndexRoute,
InvoicesIndexRoute: InvoicesIndexRoute,
MessagesIndexRoute: MessagesIndexRoute,
PaymentPlansIndexRoute: PaymentPlansIndexRoute,
PaymentsIndexRoute: PaymentsIndexRoute,
ReportsIndexRoute: ReportsIndexRoute,
StatusIndexRoute: StatusIndexRoute,