UX: Update Planner pages with user-friendly text

- Keywords page: Changed 'Keywords' to 'Your Keywords'
- Clusters page: Changed 'Keyword Clusters' to 'Topic Clusters'
- Shared columns: Changed 'Volume' to 'Search Volume'
- Shared columns: Changed 'Cluster' to 'Topic Group'
- Shared columns: Changed 'Sector' to 'Category'
This commit is contained in:
IGNY8 VPS (Salman)
2025-12-25 09:00:00 +00:00
parent 272a3e3d83
commit 9e48d728fd
3 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ export const statusColumn = {
export const volumeColumn = {
key: 'volume',
label: 'Volume',
label: 'Search Volume',
sortable: true,
numeric: true,
width: '100px',
@@ -51,7 +51,7 @@ export const countryColumn = {
export const clusterColumn = {
key: 'cluster',
label: 'Cluster',
label: 'Topic Group',
sortable: true,
width: '200px',
};
@@ -90,7 +90,7 @@ export const wordCountColumn = {
export const sectorColumn = {
key: 'sector_name',
label: 'Sector',
label: 'Category',
sortable: false,
width: '150px',
};

View File

@@ -452,7 +452,7 @@ export default function Clusters() {
return (
<>
<PageHeader
title="Keyword Clusters"
title="Topic Clusters"
badge={{ icon: <GroupIcon />, color: 'purple' }}
navigation={<ModuleNavigationTabs tabs={plannerTabs} />}
workflowInsights={workflowInsights}

View File

@@ -619,7 +619,7 @@ export default function Keywords() {
return (
<>
<PageHeader
title="Keywords"
title="Your Keywords"
badge={{ icon: <ListIcon />, color: 'green' }}
navigation={<ModuleNavigationTabs tabs={plannerTabs} />}
workflowInsights={workflowInsights}