From ac226ef62bf11a40f43e267e83d8e7132061d9dd Mon Sep 17 00:00:00 2001 From: Juri Date: Mon, 26 May 2025 08:32:18 +0200 Subject: [PATCH] docs(nx-dev): fix issue on landing page and wording update --- nx-dev/ui-ai-landing-page/src/lib/features.tsx | 6 +++--- nx-dev/ui-ai-landing-page/src/lib/hero.tsx | 15 +++++++++------ .../src/lib/problem-statement.tsx | 2 +- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/nx-dev/ui-ai-landing-page/src/lib/features.tsx b/nx-dev/ui-ai-landing-page/src/lib/features.tsx index a56b054037..413d5a0b3d 100644 --- a/nx-dev/ui-ai-landing-page/src/lib/features.tsx +++ b/nx-dev/ui-ai-landing-page/src/lib/features.tsx @@ -9,11 +9,11 @@ export function Features(): ReactElement {
- Make your AI workspace-aware + Make your AI assistant workspace-aware

- Transform your AI from context-blind to architecture-aware with + Transform your LLM from context-blind to architecture-aware with complete workspace intelligence.

@@ -108,7 +108,7 @@ export function Features(): ReactElement { } /> } diff --git a/nx-dev/ui-ai-landing-page/src/lib/hero.tsx b/nx-dev/ui-ai-landing-page/src/lib/hero.tsx index 7319cd41c1..f28c33d93b 100644 --- a/nx-dev/ui-ai-landing-page/src/lib/hero.tsx +++ b/nx-dev/ui-ai-landing-page/src/lib/hero.tsx @@ -105,7 +105,7 @@ const aiFeatures: AIFeature[] = [ }, { id: 'ci-fixes', - title: 'AI-Powered CI Failure Analysis', + title: 'CI integration and AI-powered fixes', description: 'Your LLM automatically diagnoses CI failures and suggests targeted fixes.', icon: ({ className, ...props }: React.ComponentProps<'svg'>) => ( @@ -146,7 +146,7 @@ const aiFeatures: AIFeature[] = [ }, { id: 'terminal-integration', - title: 'Active Terminal Task and Log Awareness', + title: 'Active terminal task and log awareness', description: 'Give your LLM real-time visibility into running tasks and build outputs.', icon: CommandLineIcon, @@ -157,7 +157,7 @@ const aiFeatures: AIFeature[] = [ }, { id: 'code-generation', - title: 'Predictable Code Generation That Works', + title: 'Predictable code generation that works', description: 'Generate workspace-aware code that follows your patterns and architecture.', icon: ({ className, ...props }: React.ComponentProps<'svg'>) => ( @@ -422,9 +422,12 @@ export function Hero(): JSX.Element { onClick={() => setSelectedFeature(feature)} className={cx( 'group flex w-full gap-4 rounded-lg p-4 text-left transition-all duration-200', - isSelected - ? 'bg-blue-50 ring-2 ring-blue-500 dark:bg-blue-950/50 dark:ring-blue-400' - : 'hover:bg-slate-100 dark:hover:bg-slate-800' + { + 'bg-blue-50 ring-2 ring-blue-500 dark:bg-blue-950/50 dark:ring-blue-400': + isSelected, + 'hover:bg-slate-100 dark:hover:bg-slate-800': + !isSelected, + } )} >
- Your AI is blind to your workspace architecture + Your AI assistant is blind to your workspace architecture