UX Text Improvements: Thinker Module Pages

- Updated page titles to be more descriptive:
  * Prompts: 'AI Prompts Management' → 'Customize Your AI Writer'
  * AuthorProfiles: 'Author Profiles' → 'Choose Your Writing Voice'
  * Strategies: 'Content Strategies' → 'Your Content Strategies'
  * ImageTesting: 'Image Testing' → 'Test Your Image Generator'
  * Dashboard: 'Thinker Dashboard' → 'Your AI Configuration Dashboard'

- Updated navigation tab labels across all Thinker pages:
  * 'Prompts' → 'AI Instructions'
  * 'Author Profiles' → 'Writing Voices'
  * 'Strategies' → 'Content Strategies'
  * 'Image Testing' stays the same

- Updated Prompts page section titles:
  * 'Planner Prompts' → 'Keyword & Topic Instructions'
  * 'Writer Prompts' → 'Article Writing Instructions'
  * Updated descriptions to be more conversational

Part of comprehensive UX text improvement initiative.
This commit is contained in:
IGNY8 VPS (Salman)
2025-12-25 06:32:15 +00:00
parent a5da5f26c7
commit d7220aeb91
5 changed files with 21 additions and 21 deletions

View File

@@ -101,9 +101,9 @@ export default function AuthorProfiles() {
// Thinker navigation tabs
const thinkerTabs = [
{ label: 'Prompts', path: '/thinker/prompts', icon: <BoltIcon /> },
{ label: 'Author Profiles', path: '/thinker/author-profiles', icon: <UserIcon /> },
{ label: 'Strategies', path: '/thinker/strategies', icon: <ShootingStarIcon /> },
{ label: 'AI Instructions', path: '/thinker/prompts', icon: <BoltIcon /> },
{ label: 'Writing Voices', path: '/thinker/author-profiles', icon: <UserIcon /> },
{ label: 'Content Strategies', path: '/thinker/strategies', icon: <ShootingStarIcon /> },
{ label: 'Image Testing', path: '/thinker/image-testing', icon: <ImageIcon /> },
];
@@ -111,7 +111,7 @@ export default function AuthorProfiles() {
<div className="p-6">
<PageMeta title="Author Profiles" />
<PageHeader
title="Author Profiles"
title="Choose Your Writing Voice"
badge={{ icon: <UserIcon />, color: 'blue' }}
navigation={<ModuleNavigationTabs tabs={thinkerTabs} />}
/>

View File

@@ -147,7 +147,7 @@ export default function ThinkerDashboard() {
return (
<>
<PageMeta title="Thinker Dashboard - IGNY8" description="Strategic OS and thinking engine" />
<PageHeader title="Thinker Dashboard" />
<PageHeader title="Your AI Configuration Dashboard" />
<div className="space-y-6">
{/* Key Metrics */}

View File

@@ -7,9 +7,9 @@ import { BoltIcon, UserIcon, ShootingStarIcon, ImageIcon } from "../../icons";
export default function ImageTesting() {
// Thinker navigation tabs
const thinkerTabs = [
{ label: 'Prompts', path: '/thinker/prompts', icon: <BoltIcon /> },
{ label: 'Author Profiles', path: '/thinker/author-profiles', icon: <UserIcon /> },
{ label: 'Strategies', path: '/thinker/strategies', icon: <ShootingStarIcon /> },
{ label: 'AI Instructions', path: '/thinker/prompts', icon: <BoltIcon /> },
{ label: 'Writing Voices', path: '/thinker/author-profiles', icon: <UserIcon /> },
{ label: 'Content Strategies', path: '/thinker/strategies', icon: <ShootingStarIcon /> },
{ label: 'Image Testing', path: '/thinker/image-testing', icon: <ImageIcon /> },
];
@@ -17,7 +17,7 @@ export default function ImageTesting() {
<>
<PageMeta title="Image Testing - IGNY8" description="AI image testing" />
<PageHeader
title="Image Testing"
title="Test Your Image Generator"
badge={{ icon: <ImageIcon />, color: 'indigo' }}
navigation={<ModuleNavigationTabs tabs={thinkerTabs} />}
/>

View File

@@ -201,9 +201,9 @@ export default function Prompts() {
// Thinker navigation tabs
const thinkerTabs = [
{ label: 'Prompts', path: '/thinker/prompts', icon: <BoltIcon /> },
{ label: 'Author Profiles', path: '/thinker/author-profiles', icon: <UserIcon /> },
{ label: 'Strategies', path: '/thinker/strategies', icon: <ShootingStarIcon /> },
{ label: 'AI Instructions', path: '/thinker/prompts', icon: <BoltIcon /> },
{ label: 'Writing Voices', path: '/thinker/author-profiles', icon: <UserIcon /> },
{ label: 'Content Strategies', path: '/thinker/strategies', icon: <ShootingStarIcon /> },
{ label: 'Image Testing', path: '/thinker/image-testing', icon: <ImageIcon /> },
];
@@ -211,7 +211,7 @@ export default function Prompts() {
<>
<PageMeta title="Prompts - IGNY8" description="AI prompts management" />
<PageHeader
title="AI Prompts Management"
title="Customize Your AI Writer"
badge={{ icon: <BoltIcon />, color: 'orange' }}
navigation={<ModuleNavigationTabs tabs={thinkerTabs} />}
/>
@@ -222,10 +222,10 @@ export default function Prompts() {
<div className="mb-8">
<div className="mb-4">
<h2 className="text-xl font-semibold text-gray-800 dark:text-white mb-1">
Planner Prompts
Keyword & Topic Instructions
</h2>
<p className="text-sm text-gray-600 dark:text-gray-400">
Configure AI prompt templates for clustering and idea generation
Tell the AI how to group keywords and suggest content ideas
</p>
</div>
@@ -295,10 +295,10 @@ export default function Prompts() {
<div className="mb-8">
<div className="mb-4">
<h2 className="text-xl font-semibold text-gray-800 dark:text-white mb-1">
Writer Prompts
Article Writing Instructions
</h2>
<p className="text-sm text-gray-600 dark:text-gray-400">
Configure AI prompt templates for content writing
Tell the AI how to write your articles
</p>
</div>

View File

@@ -7,9 +7,9 @@ import { BoltIcon, UserIcon, ShootingStarIcon, ImageIcon } from "../../icons";
export default function Strategies() {
// Thinker navigation tabs
const thinkerTabs = [
{ label: 'Prompts', path: '/thinker/prompts', icon: <BoltIcon /> },
{ label: 'Author Profiles', path: '/thinker/author-profiles', icon: <UserIcon /> },
{ label: 'Strategies', path: '/thinker/strategies', icon: <ShootingStarIcon /> },
{ label: 'AI Instructions', path: '/thinker/prompts', icon: <BoltIcon /> },
{ label: 'Writing Voices', path: '/thinker/author-profiles', icon: <UserIcon /> },
{ label: 'Content Strategies', path: '/thinker/strategies', icon: <ShootingStarIcon /> },
{ label: 'Image Testing', path: '/thinker/image-testing', icon: <ImageIcon /> },
];
@@ -17,7 +17,7 @@ export default function Strategies() {
<>
<PageMeta title="Strategies - IGNY8" description="Content strategies" />
<PageHeader
title="Content Strategies"
title="Your Content Strategies"
badge={{ icon: <ShootingStarIcon />, color: 'purple' }}
navigation={<ModuleNavigationTabs tabs={thinkerTabs} />}
/>