UX: Update Writer module pages with user-friendly text

- Tasks: Changed 'Content Queue' to 'Writing Tasks'
- Content: Changed 'Content Drafts' to 'Your Articles'
- Review: Changed 'Content Review' to 'Review Queue'
- Published: Changed 'Published Content' to 'Published Articles'
- Images: Changed 'Content Images' to 'Article Images'
- Dashboard: Changed 'Writer Dashboard' to 'Content Creation Dashboard'
This commit is contained in:
IGNY8 VPS (Salman)
2025-12-25 09:01:18 +00:00
parent 9e48d728fd
commit 62fc47cfe8
6 changed files with 7 additions and 7 deletions

View File

@@ -290,7 +290,7 @@ export default function Content() {
return ( return (
<> <>
<PageHeader <PageHeader
title="Content Drafts" title="Your Articles"
badge={{ icon: <FileIcon />, color: 'purple' }} badge={{ icon: <FileIcon />, color: 'purple' }}
navigation={<ModuleNavigationTabs tabs={writerTabs} />} navigation={<ModuleNavigationTabs tabs={writerTabs} />}
workflowInsights={workflowInsights} workflowInsights={workflowInsights}

View File

@@ -482,9 +482,9 @@ export default function WriterDashboard() {
return ( return (
<> <>
<PageMeta title="Writer Dashboard - IGNY8" description="Content creation overview" /> <PageMeta title="Content Creation Dashboard - IGNY8" description="Track your writing progress and productivity" />
<PageHeader <PageHeader
title="Writer Dashboard" title="Content Creation Dashboard"
lastUpdated={lastUpdated} lastUpdated={lastUpdated}
showRefresh={true} showRefresh={true}
onRefresh={fetchDashboardData} onRefresh={fetchDashboardData}

View File

@@ -459,7 +459,7 @@ export default function Images() {
return ( return (
<> <>
<PageHeader <PageHeader
title="Content Images" title="Article Images"
badge={{ icon: <FileIcon />, color: 'orange' }} badge={{ icon: <FileIcon />, color: 'orange' }}
navigation={<ModuleNavigationTabs tabs={writerTabs} />} navigation={<ModuleNavigationTabs tabs={writerTabs} />}
/> />

View File

@@ -317,7 +317,7 @@ export default function Published() {
return ( return (
<> <>
<PageHeader <PageHeader
title="Published Content" title="Published Articles"
badge={{ icon: <CheckCircleIcon />, color: 'green' }} badge={{ icon: <CheckCircleIcon />, color: 'green' }}
navigation={<ModuleNavigationTabs tabs={writerTabs} />} navigation={<ModuleNavigationTabs tabs={writerTabs} />}
/> />

View File

@@ -356,7 +356,7 @@ export default function Review() {
return ( return (
<> <>
<PageHeader <PageHeader
title="Content Review" title="Review Queue"
badge={{ icon: <CheckCircleIcon />, color: 'blue' }} badge={{ icon: <CheckCircleIcon />, color: 'blue' }}
navigation={<ModuleNavigationTabs tabs={writerTabs} />} navigation={<ModuleNavigationTabs tabs={writerTabs} />}
/> />

View File

@@ -434,7 +434,7 @@ export default function Tasks() {
return ( return (
<> <>
<PageHeader <PageHeader
title="Content Queue" title="Writing Tasks"
badge={{ icon: <TaskIcon />, color: 'indigo' }} badge={{ icon: <TaskIcon />, color: 'indigo' }}
navigation={<ModuleNavigationTabs tabs={writerTabs} />} navigation={<ModuleNavigationTabs tabs={writerTabs} />}
workflowInsights={workflowInsights} workflowInsights={workflowInsights}