|
@@ -51,6 +51,24 @@ const router = createBrowserRouter([
|
|
|
Component: (await import('./pages/tasks')).default,
|
|
Component: (await import('./pages/tasks')).default,
|
|
|
}),
|
|
}),
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ path: 'chats',
|
|
|
|
|
+ lazy: async () => ({
|
|
|
|
|
+ Component: (await import('@/components/coming-soon')).default,
|
|
|
|
|
+ }),
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: 'users',
|
|
|
|
|
+ lazy: async () => ({
|
|
|
|
|
+ Component: (await import('@/components/coming-soon')).default,
|
|
|
|
|
+ }),
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: 'analysis',
|
|
|
|
|
+ lazy: async () => ({
|
|
|
|
|
+ Component: (await import('@/components/coming-soon')).default,
|
|
|
|
|
+ }),
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
path: 'settings',
|
|
path: 'settings',
|
|
|
lazy: async () => ({
|
|
lazy: async () => ({
|