UX: Complete remaining page updates with user-friendly text

PLANNER MODULE:
- Ideas: 'Content Ideas' → 'Article Ideas'
- Dashboard: 'Planner Dashboard' → 'Planning Dashboard'
- Keyword Opportunities: 'Keyword Opportunities' → 'Discover Keywords'

LINKER MODULE:
- Content List: 'Link Content' → 'Add Internal Links'
- Dashboard: 'Linker Dashboard' → 'Internal Linking Dashboard'

OPTIMIZER MODULE:
- Content Selector: 'Optimize Content' → 'Improve Your Articles'
- Dashboard: 'Optimizer Dashboard' → 'Optimization Dashboard'

All page titles now use clear, action-oriented language that non-technical
users can easily understand.
This commit is contained in:
IGNY8 VPS (Salman)
2025-12-25 09:45:59 +00:00
parent d9346e6f16
commit 65bf65bb6b
7 changed files with 13 additions and 13 deletions

View File

@@ -98,12 +98,12 @@ export default function LinkerContentList() {
return ( return (
<> <>
<PageMeta title="Link Content" description="Process content for internal linking" /> <PageMeta title="Add Internal Links" description="Connect your articles with internal links" />
<div className="space-y-6"> <div className="space-y-6">
<PageHeader <PageHeader
title="Link Content" title="Add Internal Links"
description="Add internal links to your content" description="Connect your articles to improve SEO"
navigation={<ModuleNavigationTabs tabs={[ navigation={<ModuleNavigationTabs tabs={[
{ label: 'Content', path: '/linker/content', icon: <FileIcon /> }, { label: 'Content', path: '/linker/content', icon: <FileIcon /> },
]} />} ]} />}

View File

@@ -64,12 +64,12 @@ export default function LinkerDashboard() {
return ( return (
<> <>
<PageMeta title="Linker Dashboard" description="Internal linking overview and statistics" /> <PageMeta title="Internal Linking Dashboard" description="Track your internal linking progress" />
<div className="space-y-6"> <div className="space-y-6">
<div className="flex items-center justify-between mb-6"> <div className="flex items-center justify-between mb-6">
<PageHeader <PageHeader
title="Linker Dashboard" title="Internal Linking Dashboard"
lastUpdated={new Date()} lastUpdated={new Date()}
badge={{ badge={{
icon: <PlugInIcon />, icon: <PlugInIcon />,

View File

@@ -138,11 +138,11 @@ export default function OptimizerContentSelector() {
return ( return (
<> <>
<PageMeta title="Optimize Content" description="Select and optimize content for SEO and engagement" /> <PageMeta title="Improve Your Articles" description="Optimize your content for better SEO and engagement" />
<div className="space-y-6"> <div className="space-y-6">
<PageHeader <PageHeader
title="Optimize Content" title="Improve Your Articles"
lastUpdated={new Date()} lastUpdated={new Date()}
badge={{ badge={{
icon: <BoltIcon />, icon: <BoltIcon />,

View File

@@ -66,12 +66,12 @@ export default function OptimizerDashboard() {
return ( return (
<> <>
<PageMeta title="Optimizer Dashboard" description="Content optimization overview and statistics" /> <PageMeta title="Optimization Dashboard" description="Track your content optimization progress" />
<div className="space-y-6"> <div className="space-y-6">
<div className="flex items-center justify-between mb-6"> <div className="flex items-center justify-between mb-6">
<PageHeader <PageHeader
title="Optimizer Dashboard" title="Optimization Dashboard"
lastUpdated={new Date()} lastUpdated={new Date()}
badge={{ badge={{
icon: <BoltIcon />, icon: <BoltIcon />,

View File

@@ -452,9 +452,9 @@ export default function PlannerDashboard() {
return ( return (
<> <>
<PageMeta title="Planner Dashboard - IGNY8" description="Content planning overview" /> <PageMeta title="Planning Dashboard - IGNY8" description="Track your content planning progress" />
<PageHeader <PageHeader
title="Planner Dashboard" title="Planning Dashboard"
lastUpdated={lastUpdated} lastUpdated={lastUpdated}
showRefresh={true} showRefresh={true}
onRefresh={fetchDashboardData} onRefresh={fetchDashboardData}

View File

@@ -358,7 +358,7 @@ export default function Ideas() {
return ( return (
<> <>
<PageHeader <PageHeader
title="Content Ideas" title="Article Ideas"
badge={{ icon: <BoltIcon />, color: 'orange' }} badge={{ icon: <BoltIcon />, color: 'orange' }}
navigation={<ModuleNavigationTabs tabs={plannerTabs} />} navigation={<ModuleNavigationTabs tabs={plannerTabs} />}
workflowInsights={workflowInsights} workflowInsights={workflowInsights}

View File

@@ -579,7 +579,7 @@ export default function KeywordOpportunities() {
return ( return (
<> <>
<PageHeader <PageHeader
title="Keyword Opportunities" title="Discover Keywords"
badge={{ icon: <BoltIcon />, color: 'orange' }} badge={{ icon: <BoltIcon />, color: 'orange' }}
/> />