import { motion } from "framer-motion"; import { Link } from "wouter"; import { useQuery } from "@tanstack/react-query"; import { ArrowLeft, Shield, FileCode, Terminal, ChevronRight, Building, GraduationCap, Users, Activity, TrendingUp, Target, Zap, Globe, DollarSign, CheckCircle } from "lucide-react"; import { AreaChart, Area, BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, PieChart, Pie, Cell } from "recharts"; import gridBg from '@assets/generated_images/dark_subtle_digital_grid_texture.png'; const growthData = [ { month: 'Jan', architects: 12, projects: 3 }, { month: 'Feb', architects: 28, projects: 7 }, { month: 'Mar', architects: 45, projects: 12 }, { month: 'Apr', architects: 67, projects: 18 }, { month: 'May', architects: 89, projects: 24 }, { month: 'Jun', architects: 120, projects: 31 }, ]; const revenueStreams = [ { name: 'Aegis Licenses', value: 45 }, { name: 'Enterprise Support', value: 25 }, { name: 'Certification Fees', value: 20 }, { name: 'API Access', value: 10 }, ]; const COLORS = ['#eab308', '#22c55e', '#3b82f6', '#8b5cf6']; export default function Pitch() { const { data: metrics } = useQuery({ queryKey: ["metrics"], queryFn: async () => { const res = await fetch("/api/metrics"); return res.json(); }, }); return (
{/* Title */}
The Axiom Protocol

Investor Brief

AeThex is a self-sustaining ecosystem built on a dual-entity model that transforms raw talent into certified Metaverse Architects.

{/* The Dual Entity Model */}
Non-Profit

The Foundation

Uses The Codex to train elite Architects. Gamified curriculum, verified certifications, and a clear path from beginner to master.

Codex Standard Certification
{metrics?.totalProfiles || 0} Active Architects
For-Profit

The Corporation

Builds The Aegis to secure the Metaverse. Enterprise security layer, PII scrubbing, threat intervention—sold to platforms and publishers.

Real-time Security Layer
{metrics?.totalProjects || 0} Protected Projects
{/* The Holy Trinity */}

The Holy Trinity

Axiom

The Law. The foundational protocol governing the ecosystem.

Codex

The Standard. Certification that proves mastery.

Aegis

The Shield. Real-time protection for builders.

{/* Growth Charts */}

Growth Trajectory

Architect Enrollment

Protected Projects

{/* Revenue Model */}

Revenue Model

`${name} ${(percent * 100).toFixed(0)}%`} labelLine={false} > {revenueStreams.map((entry, index) => ( ))}
{revenueStreams.map((stream, i) => (
{stream.name}
{stream.value}% of projected revenue
))}
{/* The Pitch Quote */}
"We take raw talent, train them on our laws, and arm them with our weapons. The Foundation creates the workforce; The Corporation sells the security."
{/* Why Invest */}

Why Invest

First Mover

Building the security standard before the Metaverse matures.

Talent Pipeline

Self-sustaining workforce trained on proprietary methods.

Platform Agnostic

Works across any metaverse, game engine, or virtual world.

B2B Revenue

Enterprise licensing model with recurring revenue.

{/* Live Metrics */} {metrics && (

Live Ecosystem Metrics

{metrics.totalProfiles}
Architects
{metrics.totalProjects}
Projects
{metrics.totalXP?.toLocaleString()}
Total XP
{metrics.verifiedUsers}
Verified
)} {/* Team Section */}

Leadership Team

MP

MrPigLr

Founder & CEO

Visionary behind the AeThex ecosystem. 10+ years in game development and metaverse architecture.

AX

Axiom Lead

Chief Architect

Protocol design and ecosystem governance. Former enterprise software architect.

AG

Aegis Lead

Head of Security

Security engineering and threat intelligence. Background in cybersecurity and AI.

{/* CTA */}

Ready to learn more about investment opportunities?

Contact Our Team
); }