diff --git a/frontend/src/pages/Writer/Content.tsx b/frontend/src/pages/Writer/Content.tsx
index 4cfda9f4..d81810ad 100644
--- a/frontend/src/pages/Writer/Content.tsx
+++ b/frontend/src/pages/Writer/Content.tsx
@@ -280,17 +280,17 @@ export default function Content() {
// Writer navigation tabs
const writerTabs = [
- { label: 'Queue', path: '/writer/tasks', icon: },
- { label: 'Drafts', path: '/writer/content', icon: },
- { label: 'Images', path: '/writer/images', icon: },
- { label: 'Review', path: '/writer/review', icon: },
+ { label: 'Ready to Write', path: '/writer/tasks', icon: },
+ { label: 'Finished Drafts', path: '/writer/content', icon: },
+ { label: 'Article Images', path: '/writer/images', icon: },
+ { label: 'Review Before Publishing', path: '/writer/review', icon: },
{ label: 'Published', path: '/writer/published', icon: },
];
return (
<>
, color: 'purple' }}
navigation={}
workflowInsights={workflowInsights}
diff --git a/frontend/src/pages/Writer/Dashboard.tsx b/frontend/src/pages/Writer/Dashboard.tsx
index cc5c2b4e..3a6f7b70 100644
--- a/frontend/src/pages/Writer/Dashboard.tsx
+++ b/frontend/src/pages/Writer/Dashboard.tsx
@@ -484,7 +484,7 @@ export default function WriterDashboard() {
<>
},
- { label: 'Drafts', path: '/writer/content', icon: },
- { label: 'Images', path: '/writer/images', icon: },
- { label: 'Review', path: '/writer/review', icon: },
+ { label: 'Ready to Write', path: '/writer/tasks', icon: },
+ { label: 'Finished Drafts', path: '/writer/content', icon: },
+ { label: 'Article Images', path: '/writer/images', icon: },
+ { label: 'Review Before Publishing', path: '/writer/review', icon: },
{ label: 'Published', path: '/writer/published', icon: },
];
return (
<>
, color: 'orange' }}
navigation={}
/>
diff --git a/frontend/src/pages/Writer/Published.tsx b/frontend/src/pages/Writer/Published.tsx
index e5c0d9d1..96943b63 100644
--- a/frontend/src/pages/Writer/Published.tsx
+++ b/frontend/src/pages/Writer/Published.tsx
@@ -307,17 +307,17 @@ export default function Published() {
// Writer navigation tabs
const writerTabs = [
- { label: 'Queue', path: '/writer/tasks', icon: },
- { label: 'Drafts', path: '/writer/content', icon: },
- { label: 'Images', path: '/writer/images', icon: },
- { label: 'Review', path: '/writer/review', icon: },
+ { label: 'Ready to Write', path: '/writer/tasks', icon: },
+ { label: 'Finished Drafts', path: '/writer/content', icon: },
+ { label: 'Article Images', path: '/writer/images', icon: },
+ { label: 'Review Before Publishing', path: '/writer/review', icon: },
{ label: 'Published', path: '/writer/published', icon: },
];
return (
<>
, color: 'green' }}
navigation={}
/>
diff --git a/frontend/src/pages/Writer/Review.tsx b/frontend/src/pages/Writer/Review.tsx
index 19be6247..f833aa3d 100644
--- a/frontend/src/pages/Writer/Review.tsx
+++ b/frontend/src/pages/Writer/Review.tsx
@@ -346,17 +346,17 @@ export default function Review() {
// Writer navigation tabs
const writerTabs = [
- { label: 'Queue', path: '/writer/tasks', icon: },
- { label: 'Drafts', path: '/writer/content', icon: },
- { label: 'Images', path: '/writer/images', icon: },
- { label: 'Review', path: '/writer/review', icon: },
+ { label: 'Ready to Write', path: '/writer/tasks', icon: },
+ { label: 'Finished Drafts', path: '/writer/content', icon: },
+ { label: 'Article Images', path: '/writer/images', icon: },
+ { label: 'Review Before Publishing', path: '/writer/review', icon: },
{ label: 'Published', path: '/writer/published', icon: },
];
return (
<>
, color: 'blue' }}
navigation={}
/>
diff --git a/frontend/src/pages/Writer/Tasks.tsx b/frontend/src/pages/Writer/Tasks.tsx
index b1fb09dd..6fdb1972 100644
--- a/frontend/src/pages/Writer/Tasks.tsx
+++ b/frontend/src/pages/Writer/Tasks.tsx
@@ -424,17 +424,17 @@ export default function Tasks() {
// Writer navigation tabs
const writerTabs = [
- { label: 'Queue', path: '/writer/tasks', icon: },
- { label: 'Drafts', path: '/writer/content', icon: },
- { label: 'Images', path: '/writer/images', icon: },
- { label: 'Review', path: '/writer/review', icon: },
+ { label: 'Ready to Write', path: '/writer/tasks', icon: },
+ { label: 'Finished Drafts', path: '/writer/content', icon: },
+ { label: 'Article Images', path: '/writer/images', icon: },
+ { label: 'Review Before Publishing', path: '/writer/review', icon: },
{ label: 'Published', path: '/writer/published', icon: },
];
return (
<>
, color: 'indigo' }}
navigation={}
workflowInsights={workflowInsights}