docs(nx-dev): fix issue on landing page and wording update
This commit is contained in:
parent
3ea50eb0e7
commit
ac226ef62b
@ -9,11 +9,11 @@ export function Features(): ReactElement {
|
|||||||
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
||||||
<div className="mb-12 text-left">
|
<div className="mb-12 text-left">
|
||||||
<SectionHeading as="h2" variant="title">
|
<SectionHeading as="h2" variant="title">
|
||||||
Make your AI workspace-aware
|
Make your AI assistant workspace-aware
|
||||||
</SectionHeading>
|
</SectionHeading>
|
||||||
|
|
||||||
<p className="mt-4 text-lg text-slate-500 dark:text-slate-400">
|
<p className="mt-4 text-lg text-slate-500 dark:text-slate-400">
|
||||||
Transform your AI from context-blind to architecture-aware with
|
Transform your LLM from context-blind to architecture-aware with
|
||||||
complete workspace intelligence.
|
complete workspace intelligence.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@ -108,7 +108,7 @@ export function Features(): ReactElement {
|
|||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
<FeatureCard
|
<FeatureCard
|
||||||
title="Terminal integration"
|
title="Terminal awareness"
|
||||||
description="Your AI assistant sees what you see in the terminal with real-time output awareness and contextual error analysis."
|
description="Your AI assistant sees what you see in the terminal with real-time output awareness and contextual error analysis."
|
||||||
href="#"
|
href="#"
|
||||||
icon={<CommandLineIcon className="h-6 w-6" />}
|
icon={<CommandLineIcon className="h-6 w-6" />}
|
||||||
|
|||||||
@ -105,7 +105,7 @@ const aiFeatures: AIFeature[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'ci-fixes',
|
id: 'ci-fixes',
|
||||||
title: 'AI-Powered CI Failure Analysis',
|
title: 'CI integration and AI-powered fixes',
|
||||||
description:
|
description:
|
||||||
'Your LLM automatically diagnoses CI failures and suggests targeted fixes.',
|
'Your LLM automatically diagnoses CI failures and suggests targeted fixes.',
|
||||||
icon: ({ className, ...props }: React.ComponentProps<'svg'>) => (
|
icon: ({ className, ...props }: React.ComponentProps<'svg'>) => (
|
||||||
@ -146,7 +146,7 @@ const aiFeatures: AIFeature[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'terminal-integration',
|
id: 'terminal-integration',
|
||||||
title: 'Active Terminal Task and Log Awareness',
|
title: 'Active terminal task and log awareness',
|
||||||
description:
|
description:
|
||||||
'Give your LLM real-time visibility into running tasks and build outputs.',
|
'Give your LLM real-time visibility into running tasks and build outputs.',
|
||||||
icon: CommandLineIcon,
|
icon: CommandLineIcon,
|
||||||
@ -157,7 +157,7 @@ const aiFeatures: AIFeature[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'code-generation',
|
id: 'code-generation',
|
||||||
title: 'Predictable Code Generation That Works',
|
title: 'Predictable code generation that works',
|
||||||
description:
|
description:
|
||||||
'Generate workspace-aware code that follows your patterns and architecture.',
|
'Generate workspace-aware code that follows your patterns and architecture.',
|
||||||
icon: ({ className, ...props }: React.ComponentProps<'svg'>) => (
|
icon: ({ className, ...props }: React.ComponentProps<'svg'>) => (
|
||||||
@ -422,9 +422,12 @@ export function Hero(): JSX.Element {
|
|||||||
onClick={() => setSelectedFeature(feature)}
|
onClick={() => setSelectedFeature(feature)}
|
||||||
className={cx(
|
className={cx(
|
||||||
'group flex w-full gap-4 rounded-lg p-4 text-left transition-all duration-200',
|
'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'
|
'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'
|
isSelected,
|
||||||
|
'hover:bg-slate-100 dark:hover:bg-slate-800':
|
||||||
|
!isSelected,
|
||||||
|
}
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<motion.div
|
<motion.div
|
||||||
|
|||||||
@ -12,7 +12,7 @@ export function ProblemStatement({
|
|||||||
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
||||||
<div className="mb-12 text-left">
|
<div className="mb-12 text-left">
|
||||||
<SectionHeading as="h2" variant="title">
|
<SectionHeading as="h2" variant="title">
|
||||||
Your AI is blind to your workspace architecture
|
Your AI assistant is blind to your workspace architecture
|
||||||
</SectionHeading>
|
</SectionHeading>
|
||||||
|
|
||||||
<p className="mt-4 text-lg text-slate-500 dark:text-slate-400">
|
<p className="mt-4 text-lg text-slate-500 dark:text-slate-400">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user