diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx index 0991bcb..091c4f0 100644 --- a/frontend/app/page.tsx +++ b/frontend/app/page.tsx @@ -5,6 +5,7 @@ import { Button } from "@/components/ui/button"; import { BrainCircuit, Activity, Code2, Network } from "lucide-react"; import Link from "next/link"; import { GlowyWavesHero } from "@/components/ui/glowy-waves-hero-shadcnui"; +import { SkewCard } from "@/components/ui/gradient-card-showcase"; export default function LandingPage() { return ( @@ -70,46 +71,35 @@ export default function LandingPage() {

-
-
- -

- Self-Evolving Architecture -

-

- Convert your projects into self-evolving systems. Constantly - review, overlook, and upgrade the entire codebase - autonomously. -

-
+
+ -
- -

- Real-Time Reasoning -

-

- Watch the system's thought process unfold live. - Transparent logs reveal exactly how decisions are made, - hypotheses are formed, and failures are analyzed. -

-
+ -
- -

- Autonomous Skill Creation -

-

- When faced with a novel problem, AXON writes, tests, and - integrates new code modules dynamically. It expands its own - capability graph without human intervention. -

-
+
+ {/* Footer CTA */}
diff --git a/frontend/components/ui/gradient-card-showcase.tsx b/frontend/components/ui/gradient-card-showcase.tsx new file mode 100644 index 0000000..206fc70 --- /dev/null +++ b/frontend/components/ui/gradient-card-showcase.tsx @@ -0,0 +1,66 @@ +import React from 'react'; +import { LucideIcon } from 'lucide-react'; +import { cn } from "@/lib/utils"; + +interface SkewCardProps { + title: string; + description: string; + icon: LucideIcon; + gradientFrom: string; + gradientTo: string; + className?: string; +} + +export const SkewCard = ({ + title, + description, + icon: Icon, + gradientFrom, + gradientTo, + className +}: SkewCardProps) => { + return ( +
+ {/* Skewed gradient panels */} + + + + {/* Animated blurs */} + + + + + + {/* Content */} +
+ +

{title}

+

{description}

+
+ +