From 194ed93828be00ad87793c09497ec8c7d2e39e09 Mon Sep 17 00:00:00 2001 From: "IGNY8 VPS (Salman)" Date: Thu, 25 Dec 2025 06:27:58 +0000 Subject: [PATCH] UX Text Improvements: Writer Module Pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated page titles to be more descriptive: * Tasks: 'Content Queue' → 'Write Your Articles' * Content: 'Content Drafts' → 'Your Finished Drafts' * Review: 'Content Review' → 'Review Before Publishing' * Published: 'Published Content' → 'Your Published Articles' * Images: 'Content Images' → 'Your Article Images' * Dashboard: 'Writer Dashboard' → 'Your Writing Dashboard' - Updated navigation tab labels across all Writer pages: * 'Queue' → 'Ready to Write' * 'Drafts' → 'Finished Drafts' * 'Images' → 'Article Images' * 'Review' → 'Review Before Publishing' * 'Published' stays the same Part of comprehensive UX text improvement initiative. --- frontend/src/pages/Writer/Content.tsx | 10 +++++----- frontend/src/pages/Writer/Dashboard.tsx | 2 +- frontend/src/pages/Writer/Images.tsx | 10 +++++----- frontend/src/pages/Writer/Published.tsx | 10 +++++----- frontend/src/pages/Writer/Review.tsx | 10 +++++----- frontend/src/pages/Writer/Tasks.tsx | 10 +++++----- 6 files changed, 26 insertions(+), 26 deletions(-) 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}