NAVIGATION_REFACTOR COMPLETED

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-17 03:49:50 +00:00
parent 47a00e8875
commit 501a269450
29 changed files with 3839 additions and 2103 deletions

View File

@@ -111,7 +111,7 @@ export const createClustersPageConfig = (
render: (value: string, row: Cluster) => (
<Link
to={`/planner/clusters/${row.id}`}
className="text-base font-light text-brand-600 hover:text-brand-700 dark:text-brand-400 dark:hover:text-brand-300"
className="text-sm font-medium text-brand-600 hover:text-brand-700 dark:text-brand-400 dark:hover:text-brand-300"
>
{value}
</Link>

View File

@@ -109,7 +109,7 @@ export const createIdeasPageConfig = (
toggleContentKey: 'description', // Use description field for toggle content
toggleContentLabel: 'Content Outline', // Label for expanded content
render: (value: string) => (
<span className="text-gray-800 dark:text-white text-base font-light">{value}</span>
<span className="text-sm font-medium text-gray-900 dark:text-white">{value}</span>
),
},
// Sector column - only show when viewing all sectors

View File

@@ -153,7 +153,7 @@ export const createKeywordsPageConfig = (
sortField: 'seed_keyword__keyword',
width: '300px',
render: (value: string) => (
<span>
<span className="text-sm font-medium text-gray-900 dark:text-white">
{value || '-'}
</span>
),

View File

@@ -113,7 +113,7 @@ export const createTasksPageConfig = (
return (
<div className="flex items-center gap-2">
<span className="text-base font-light text-gray-900 dark:text-white">
<span className="text-sm font-medium text-gray-900 dark:text-white">
{displayTitle}
</span>
</div>

View File

@@ -7,6 +7,7 @@ export const titleColumn = {
key: 'title',
label: 'Title',
sortable: true,
className: 'text-sm',
};
export const keywordColumn = {