diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx index 091c4f0..5300bdd 100644 --- a/frontend/app/page.tsx +++ b/frontend/app/page.tsx @@ -1,13 +1,96 @@ "use client"; -import { motion } from "framer-motion"; import { Button } from "@/components/ui/button"; -import { BrainCircuit, Activity, Code2, Network } from "lucide-react"; +import { + BrainCircuit, + Activity, + Code2, + Network, + Cpu, + Database, + Globe, + Layers, + ShieldCheck, + Zap, + Github, + Linkedin, + MessageCircle, +} 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"; +import { + FeatureCard, + AnimatedContainer, +} from "@/components/ui/grid-feature-cards"; +import VisionBentoGrid from "@/components/ui/vision-bento-grid"; +import { Footer } from "@/components/ui/modem-animated-footer"; + +const techStack = [ + { + title: "Next.js & TypeScript", + icon: Globe, + description: + "Type-safe, high-performance frontend architecture with React 19 and Next.js 15 for a seamless developer experience.", + }, + { + title: "FastAPI Backend", + icon: Cpu, + description: + "Asynchronous Python core designed for high-concurrency agent orchestration and low-latency system responses.", + }, + { + title: "Qdrant Vector DB", + icon: Database, + description: + "Long-term semantic memory and high-dimensional vector retrieval for autonomous reasoning and knowledge persistence.", + }, + { + title: "Multi-LLM Routing", + icon: Layers, + description: + "Dynamic orchestration across Gemini, HuggingFace, and custom models to balance reasoning power, speed, and cost.", + }, + { + title: "Self-Evolving Skills", + icon: Zap, + description: + "Autonomous Python module generation and hot-loading, allowing the system to expand its capability graph live.", + }, + { + title: "Distributed Infrastructure", + icon: ShieldCheck, + description: + "Dockerized microservices architecture with automated CI/CD and secure cloud orchestration on DigitalOcean.", + }, +]; export default function LandingPage() { + const socialLinks = [ + { + icon: , + href: "https://github.com/Invariants0/axon", + label: "GitHub", + }, + { + icon: , + href: "https://www.linkedin.com/company/112679037/", + label: "LinkedIn", + }, + { + icon: , + href: "https://discord.gg/Q36RGfCbew", + label: "Discord", + }, + ]; + + const navLinks = [ + { label: "Features", href: "#features" }, + { label: "Technology", href: "#technology" }, + { label: "Vision", href: "#vision" }, + { label: "Enter System", href: "/dashboard" }, + ]; + return (
@@ -30,10 +113,22 @@ export default function LandingPage() { Features + Technology + + + Vision + + - Developers + Architecture Company - - Blog -
+ {/* Technology Section */} +
+
+
+ +

+ The Neural Infrastructure +

+

+ AXON is built on a foundation of high-performance, distributed + technologies designed for autonomous evolution. +

+
+ + + {techStack.map((tech, i) => ( + + ))} + +
+
+
+ + {/* Vision Section */} + {/* Footer CTA */}
@@ -115,6 +238,19 @@ export default function LandingPage() {
+ +