UX Text Improvements: Writer Module Pages
- 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.
This commit is contained in:
@@ -280,17 +280,17 @@ export default function Content() {
|
|||||||
|
|
||||||
// Writer navigation tabs
|
// Writer navigation tabs
|
||||||
const writerTabs = [
|
const writerTabs = [
|
||||||
{ label: 'Queue', path: '/writer/tasks', icon: <TaskIcon /> },
|
{ label: 'Ready to Write', path: '/writer/tasks', icon: <TaskIcon /> },
|
||||||
{ label: 'Drafts', path: '/writer/content', icon: <FileIcon /> },
|
{ label: 'Finished Drafts', path: '/writer/content', icon: <FileIcon /> },
|
||||||
{ label: 'Images', path: '/writer/images', icon: <ImageIcon /> },
|
{ label: 'Article Images', path: '/writer/images', icon: <ImageIcon /> },
|
||||||
{ label: 'Review', path: '/writer/review', icon: <CheckCircleIcon /> },
|
{ label: 'Review Before Publishing', path: '/writer/review', icon: <CheckCircleIcon /> },
|
||||||
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<PageHeader
|
<PageHeader
|
||||||
title="Content Drafts"
|
title="Your Finished Drafts"
|
||||||
badge={{ icon: <FileIcon />, color: 'purple' }}
|
badge={{ icon: <FileIcon />, color: 'purple' }}
|
||||||
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
||||||
workflowInsights={workflowInsights}
|
workflowInsights={workflowInsights}
|
||||||
|
|||||||
@@ -484,7 +484,7 @@ export default function WriterDashboard() {
|
|||||||
<>
|
<>
|
||||||
<PageMeta title="Writer Dashboard - IGNY8" description="Content creation overview" />
|
<PageMeta title="Writer Dashboard - IGNY8" description="Content creation overview" />
|
||||||
<PageHeader
|
<PageHeader
|
||||||
title="Writer Dashboard"
|
title="Your Writing Dashboard"
|
||||||
lastUpdated={lastUpdated}
|
lastUpdated={lastUpdated}
|
||||||
showRefresh={true}
|
showRefresh={true}
|
||||||
onRefresh={fetchDashboardData}
|
onRefresh={fetchDashboardData}
|
||||||
|
|||||||
@@ -449,17 +449,17 @@ export default function Images() {
|
|||||||
|
|
||||||
// Writer navigation tabs
|
// Writer navigation tabs
|
||||||
const writerTabs = [
|
const writerTabs = [
|
||||||
{ label: 'Queue', path: '/writer/tasks', icon: <TaskIcon /> },
|
{ label: 'Ready to Write', path: '/writer/tasks', icon: <TaskIcon /> },
|
||||||
{ label: 'Drafts', path: '/writer/content', icon: <FileIcon /> },
|
{ label: 'Finished Drafts', path: '/writer/content', icon: <FileIcon /> },
|
||||||
{ label: 'Images', path: '/writer/images', icon: <ImageIcon /> },
|
{ label: 'Article Images', path: '/writer/images', icon: <ImageIcon /> },
|
||||||
{ label: 'Review', path: '/writer/review', icon: <CheckCircleIcon /> },
|
{ label: 'Review Before Publishing', path: '/writer/review', icon: <CheckCircleIcon /> },
|
||||||
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<PageHeader
|
<PageHeader
|
||||||
title="Content Images"
|
title="Your Article Images"
|
||||||
badge={{ icon: <FileIcon />, color: 'orange' }}
|
badge={{ icon: <FileIcon />, color: 'orange' }}
|
||||||
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -307,17 +307,17 @@ export default function Published() {
|
|||||||
|
|
||||||
// Writer navigation tabs
|
// Writer navigation tabs
|
||||||
const writerTabs = [
|
const writerTabs = [
|
||||||
{ label: 'Queue', path: '/writer/tasks', icon: <TaskIcon /> },
|
{ label: 'Ready to Write', path: '/writer/tasks', icon: <TaskIcon /> },
|
||||||
{ label: 'Drafts', path: '/writer/content', icon: <FileIcon /> },
|
{ label: 'Finished Drafts', path: '/writer/content', icon: <FileIcon /> },
|
||||||
{ label: 'Images', path: '/writer/images', icon: <ImageIcon /> },
|
{ label: 'Article Images', path: '/writer/images', icon: <ImageIcon /> },
|
||||||
{ label: 'Review', path: '/writer/review', icon: <CheckCircleIcon /> },
|
{ label: 'Review Before Publishing', path: '/writer/review', icon: <CheckCircleIcon /> },
|
||||||
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<PageHeader
|
<PageHeader
|
||||||
title="Published Content"
|
title="Your Published Articles"
|
||||||
badge={{ icon: <CheckCircleIcon />, color: 'green' }}
|
badge={{ icon: <CheckCircleIcon />, color: 'green' }}
|
||||||
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -346,17 +346,17 @@ export default function Review() {
|
|||||||
|
|
||||||
// Writer navigation tabs
|
// Writer navigation tabs
|
||||||
const writerTabs = [
|
const writerTabs = [
|
||||||
{ label: 'Queue', path: '/writer/tasks', icon: <TaskIcon /> },
|
{ label: 'Ready to Write', path: '/writer/tasks', icon: <TaskIcon /> },
|
||||||
{ label: 'Drafts', path: '/writer/content', icon: <FileIcon /> },
|
{ label: 'Finished Drafts', path: '/writer/content', icon: <FileIcon /> },
|
||||||
{ label: 'Images', path: '/writer/images', icon: <ImageIcon /> },
|
{ label: 'Article Images', path: '/writer/images', icon: <ImageIcon /> },
|
||||||
{ label: 'Review', path: '/writer/review', icon: <CheckCircleIcon /> },
|
{ label: 'Review Before Publishing', path: '/writer/review', icon: <CheckCircleIcon /> },
|
||||||
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<PageHeader
|
<PageHeader
|
||||||
title="Content Review"
|
title="Review Before Publishing"
|
||||||
badge={{ icon: <CheckCircleIcon />, color: 'blue' }}
|
badge={{ icon: <CheckCircleIcon />, color: 'blue' }}
|
||||||
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -424,17 +424,17 @@ export default function Tasks() {
|
|||||||
|
|
||||||
// Writer navigation tabs
|
// Writer navigation tabs
|
||||||
const writerTabs = [
|
const writerTabs = [
|
||||||
{ label: 'Queue', path: '/writer/tasks', icon: <TaskIcon /> },
|
{ label: 'Ready to Write', path: '/writer/tasks', icon: <TaskIcon /> },
|
||||||
{ label: 'Drafts', path: '/writer/content', icon: <FileIcon /> },
|
{ label: 'Finished Drafts', path: '/writer/content', icon: <FileIcon /> },
|
||||||
{ label: 'Images', path: '/writer/images', icon: <ImageIcon /> },
|
{ label: 'Article Images', path: '/writer/images', icon: <ImageIcon /> },
|
||||||
{ label: 'Review', path: '/writer/review', icon: <CheckCircleIcon /> },
|
{ label: 'Review Before Publishing', path: '/writer/review', icon: <CheckCircleIcon /> },
|
||||||
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
{ label: 'Published', path: '/writer/published', icon: <CheckCircleIcon /> },
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<PageHeader
|
<PageHeader
|
||||||
title="Content Queue"
|
title="Write Your Articles"
|
||||||
badge={{ icon: <TaskIcon />, color: 'indigo' }}
|
badge={{ icon: <TaskIcon />, color: 'indigo' }}
|
||||||
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
navigation={<ModuleNavigationTabs tabs={writerTabs} />}
|
||||||
workflowInsights={workflowInsights}
|
workflowInsights={workflowInsights}
|
||||||
|
|||||||
Reference in New Issue
Block a user