new top kw add options and add keywrod improvements

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-14 17:22:22 +00:00
parent 5c4593359e
commit d2fc5b1a6b
5 changed files with 648 additions and 135 deletions

View File

@@ -72,7 +72,7 @@ const MAX_RECENT_SEARCHES = 5;
// Keys include main terms + common aliases for better search matching
const HELP_KNOWLEDGE_BASE: Record<string, SuggestedQuestion[]> = {
'keyword': [
{ question: 'How do I import keywords?', answer: 'Go to Add Keywords page and either select your industry/sector for seed keywords or upload a CSV file with your own keywords.', helpSection: 'Importing Keywords', path: '/help#importing-keywords' },
{ question: 'How do I import keywords?', answer: 'Go to Keyword Library page and browse curated keywords for your industry, or upload a CSV file with your own keywords.', helpSection: 'Importing Keywords', path: '/help#importing-keywords' },
{ question: 'How do I organize keywords into clusters?', answer: 'Navigate to Clusters page and run the AI clustering algorithm. It will automatically group similar keywords by topic.', helpSection: 'Keyword Clustering', path: '/help#keyword-clustering' },
{ question: 'Can I bulk delete keywords?', answer: 'Yes, on the Keywords page select multiple keywords using checkboxes and click the bulk delete action button.', helpSection: 'Managing Keywords', path: '/help#managing-keywords' },
],
@@ -172,7 +172,7 @@ const SEARCH_ITEMS: SearchResult[] = [
keywords: ['keyword', 'search terms', 'seo', 'target', 'focus', 'research', 'phrases', 'queries'],
content: 'View and manage all your target keywords. Filter by cluster, search volume, or status. Bulk actions: delete, assign to cluster, export to CSV. Table shows keyword text, search volume, cluster assignment, and status.',
quickActions: [
{ label: 'Import Keywords', path: '/setup/add-keywords' },
{ label: 'Keyword Library', path: '/setup/add-keywords' },
{ label: 'View Clusters', path: '/planner/clusters' },
]
},
@@ -306,12 +306,12 @@ const SEARCH_ITEMS: SearchResult[] = [
keywords: ['sites', 'wordpress', 'blog', 'website', 'connection', 'integration', 'wp', 'domain'],
content: 'Manage WordPress site connections. Add new sites, configure API credentials, test connections. View site details, publishing settings, and connection status. Supports multiple WordPress sites.',
quickActions: [
{ label: 'Add Keywords', path: '/setup/add-keywords' },
{ label: 'Browse Keywords', path: '/setup/add-keywords' },
{ label: 'Content Settings', path: '/account/content-settings' },
]
},
{
title: 'Add Keywords',
title: 'Keyword Library',
path: '/setup/add-keywords',
type: 'setup',
category: 'Setup',

View File

@@ -29,7 +29,7 @@ interface QuickActionsWidgetProps {
const workflowSteps = [
{
num: 1,
title: 'Add Keywords',
title: 'Keyword Library',
description: 'Import your target keywords manually or from CSV',
href: '/planner/keyword-opportunities',
actionLabel: 'Add',

View File

@@ -40,7 +40,7 @@ const WIZARD_STEPS = [
{
step: 3,
icon: <BoltIcon className="h-6 w-6" />,
title: 'Add Keywords',
title: 'Add Target Keywords',
description: 'Define target keywords for AI content',
outcome: 'Keywords ready for clustering and ideas',
color: 'warning',