ui improvements

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-27 06:08:29 +00:00
parent 726d945bda
commit 302af6337e
14 changed files with 219 additions and 211 deletions

View File

@@ -35,7 +35,7 @@ const ContentView = lazy(() => import("./pages/Writer/ContentView"));
const Drafts = lazy(() => import("./pages/Writer/Drafts"));
const Images = lazy(() => import("./pages/Writer/Images"));
const Review = lazy(() => import("./pages/Writer/Review"));
const Published = lazy(() => import("./pages/Writer/Published"));
const Approved = lazy(() => import("./pages/Writer/Approved"));
// Automation Module - Lazy loaded
const AutomationPage = lazy(() => import("./pages/Automation/AutomationPage"));
@@ -160,7 +160,9 @@ export default function App() {
<Route path="/writer/drafts" element={<Navigate to="/writer/content" replace />} />
<Route path="/writer/images" element={<Images />} />
<Route path="/writer/review" element={<Review />} />
<Route path="/writer/published" element={<Published />} />
<Route path="/writer/approved" element={<Approved />} />
{/* Legacy route - redirect published to approved */}
<Route path="/writer/published" element={<Navigate to="/writer/approved" replace />} />
{/* Automation Module */}
<Route path="/automation" element={<AutomationPage />} />