From e99a96aa2d53456847314cf221cddcf91058e346 Mon Sep 17 00:00:00 2001 From: Desktop Date: Fri, 14 Nov 2025 04:48:57 +0500 Subject: [PATCH] chagnes --- frontend/src/App.tsx | 6 ++++++ frontend/src/layout/AppSidebar.tsx | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 9e8c4f53..64bf6c10 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -50,6 +50,7 @@ const ReferenceIndustries = lazy(() => import("./pages/Reference/Industries")); // Other Pages - Lazy loaded const Schedules = lazy(() => import("./pages/Schedules")); +const AutomationDashboard = lazy(() => import("./pages/Automation/Dashboard")); // Settings - Lazy loaded const GeneralSettings = lazy(() => import("./pages/Settings/General")); @@ -252,6 +253,11 @@ export default function App() { } /> {/* Other Pages */} + + + + } /> diff --git a/frontend/src/layout/AppSidebar.tsx b/frontend/src/layout/AppSidebar.tsx index 399ae86a..709d06d4 100644 --- a/frontend/src/layout/AppSidebar.tsx +++ b/frontend/src/layout/AppSidebar.tsx @@ -118,6 +118,11 @@ const AppSidebar: React.FC = () => { { name: "Image Testing", path: "/thinker/image-testing" }, ], }, + { + icon: , + name: "Automation", + path: "/automation", + }, { icon: , name: "Schedules",