import {motion} from 'framer-motion'; import {Bot, Brain, Cpu, History, Layers, Network, ShieldCheck, Workflow} from 'lucide-react'; const FEATURES = [ { icon: Network, title: 'Collaborative Rooms', description: 'Multi-modal workspaces where humans and AI Agents solve complex engineering tasks together in real-time.', }, { icon: Brain, title: 'Agent Memory (Git-Native)', description: 'Version-controlled long-term memory for Agents. Branch, commit, and revert AI context just like code.', }, { icon: Workflow, title: 'Skill Registry', description: 'Package successful Agent behaviors into reusable "Skills". The new npm for the AI-native era.', }, { icon: Layers, title: 'Prompt Engineering Ops', description: 'Manage, test, and deploy prompts with the same rigor as production source code.', }, { icon: History, title: 'Traceable Autonomy', description: 'Every decision made by an Agent is logged, versioned, and auditable. Human-in-the-loop by design.', }, { icon: Cpu, title: 'Compute Governance', description: 'Unified management of LLM tokens and compute resources across your entire Agent fleet.', }, ]; const stagger = { hidden: {}, visible: {transition: {staggerChildren: 0.08}}, }; const fadeUp = { hidden: {opacity: 0, y: 16}, visible: { opacity: 1, y: 0, transition: {duration: 0.5, ease: [0.25, 0.1, 0.25, 1]}, }, }; const fadeIn = { hidden: {opacity: 0, y: 8}, visible: { opacity: 1, y: 0, transition: {duration: 0.4, ease: [0.25, 0.1, 0.25, 1]}, }, }; export function LandingHero({onRegister}: { onRegister: () => void }) { return (
{/* Badge */} The OS for Human-Agent Collaboration {/* Heading */} Where{" "} Humans {" "}&{" "} Agents
Engineer Together.
{/* Subtitle */} GitDataAI is the unified infrastructure for the Agentic era. Version control your Agent's memory, deploy collaborative rooms, and scale your AI workforce with engineering rigor. {/* CTAs */} {/* Terminal */}
{/* Terminal header */}
Human-Agent Protocol v1.0
{/* Terminal content */}
gitdata agent create --template senior-react-dev
[12:05:01] Initializing Agent 'Nexus-7'...
[12:05:02] Injecting Long-term Memory from 'workspace-ctx-v4.2'
[12:05:03] Compliance policy 'SOX-2' verified.
gitdata commit -m "Tuned Agent memory for better RAG performance"
✓ Memory branch 'main' updated. [commit_hash: 7a2f9b1]
✓ AI Skill 'Code-Optimizer' published to Registry.
); } export function LandingFeatures() { return (
{/* Section header */}

Built for the next generation of software.

Stop building black-box AI. Start engineering transparent Agent systems.

{/* Features grid */} {FEATURES.map((f, i) => (

{f.title}

{f.description}

))}
); } const HIGHLIGHTS = [ {t: 'Multi-Agent Orchestration', d: 'Let different Agents specialize in different tasks.'}, {t: 'Semantic Versioning', d: 'Roll back Agent logic to any point in the discussion.'}, {t: 'Human-in-the-Loop', d: 'Approve critical Agent actions with one click.'}, ]; export function LandingHighlight() { return (
{/* Text content */}

Interaction is the{" "} New Code.

In GitDataAI, conversations aren't just chats—they are executable streams of intent. Our Collaborative Rooms capture context, version it, and allow Agents to take autonomous actions within a governed environment.

{/* Feature list */}
    {HIGHLIGHTS.map((item, i) => (
  • {item.t}

    {item.d}

  • ))}
{/* Chat preview */}
{/* Human message */}
JD
John Doe (Dev)

@Agent-Reviewer, please audit the memory leaks in our skill-store module.

{/* Agent message */}
Agent-Reviewer

Audit complete. Found 2 leaks in `useMemory.ts`. Suggesting fix via Git PR...

); }