import Layout from "@/components/Layout"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Beaker, Briefcase, Heart, Network, Lock, TrendingUp, Users, Shield, } from "lucide-react"; export default function About() { const pillars = [ { id: "labs", name: "Labs", color: "from-yellow-500 to-orange-500", icon: Beaker, tagline: "The Innovation Engine", description: "Bleeding-edge R&D focused on proprietary technology and thought leadership", focus: [ "Advanced AI & Machine Learning", "Next-gen Web Architectures", "Procedural Content Generation", "Graphics & Performance Optimization", ], function: "High-burn speculative research creating lasting competitive advantage", }, { id: "corp", name: "Corp", color: "from-blue-500 to-cyan-500", icon: Briefcase, tagline: "The Profit Engine", description: "High-margin consulting and enterprise solutions subsidizing R&D investment", focus: [ "Custom Software Development", "Enterprise Consulting", "Game Development Services", "Digital Transformation", ], function: "Stable revenue generation and financial discipline for investor confidence", }, { id: "foundation", name: "Foundation", color: "from-red-500 to-pink-500", icon: Heart, tagline: "Community & Education", description: "Open-source and educational mission building goodwill and talent pipeline", focus: [ "Open-Source Code Repositories", "Educational Curriculum", "Community Workshops", "Talent Development", ], function: "Goodwill moat, specialized talent pipeline, and ecosystem growth", }, { id: "devlink", name: "Dev-Link", color: "from-cyan-500 to-blue-500", icon: Network, tagline: "Talent Network", description: "B2B SaaS platform for specialized professional networking and recruitment", focus: [ "Recruitment Platform", "Talent Matching", "Professional Network", "Career Development", ], function: "Access-based moat and lock-in effect for specialized human capital", }, ]; const moats = [ { title: "Technological Moat", description: "Labs creates proprietary AI and architectural innovations licensed to Corp and Dev-Link", icon: Shield, color: "bg-yellow-500/20 border-yellow-500/40 text-yellow-300", }, { title: "Talent Moat", description: "Dev-Link and Foundation establish curated access to specialized immersive developers", icon: Users, color: "bg-cyan-500/20 border-cyan-500/40 text-cyan-300", }, { title: "Community Moat", description: "Foundation builds trust and goodwill through open-source and educational mission", icon: Heart, color: "bg-red-500/20 border-red-500/40 text-red-300", }, ]; const benefits = [ { title: "Risk Segregation", description: "Labs' high-burn R&D is isolated from operational liabilities, protecting core assets", icon: Lock, }, { title: "Tax Optimization", description: "Corp and Dev-Link as profit centers, Foundation as 501(c)(3), optimizing UBIT exposure", icon: TrendingUp, }, { title: "Investor Confidence", description: "Low burn multiples demonstrated through profitable Corp operations subsidizing R&D", icon: TrendingUp, }, { title: "IP Centralization", description: "Labs acts as IP holding company with licensing to subsidiaries via transfer pricing", icon: Shield, }, ]; return (
{/* Hero */}

Building an Integrated{" "} Ecosystem

AeThex operates as a unified four-pillar organization that combines speculative innovation, profitable operations, community impact, and specialized talent acquisition. This structure creates multiple reinforcing competitive moats while managing risk and maintaining investor confidence.

{/* Four Pillars */}

The Four Pillars

{pillars.map((pillar) => { const Icon = pillar.icon; return (
{pillar.name}
{pillar.tagline}

{pillar.description}

KEY AREAS

    {pillar.focus.map((item, idx) => (
  • • {item}
  • ))}

STRATEGIC FUNCTION

{pillar.function}

); })}
{/* Competitive Moats */}

Integrated Competitive Moats

While competitors can replicate technology, the AeThex structure creates multiple, mutually-reinforcing barriers to entry that are far more resilient and defensible.

{moats.map((moat, idx) => { const Icon = moat.icon; return ( {moat.title}

{moat.description}

); })}
{/* Strategic Benefits */}

Strategic Benefits

{benefits.map((benefit, idx) => { const Icon = benefit.icon; return (

{benefit.title}

{benefit.description}

); })}
{/* Governance & Compliance */}

Governance & Compliance

Parent Company Structure

Benefit Corporation status legally protects our dual mission of profit and public benefit, enabling strategic investment in research and community regardless of leadership or capital changes.

Benefit Corp
Liability Isolation

Wholly-owned C-Corporation subsidiaries with separate boards, bank accounts, and intercompany agreements maintain the corporate veil and protect parent assets from operational liabilities.

Risk Segregation
IP Management

Labs acts as IP Holding Company with formal licensing agreements to Corp and Dev-Link at Fair Market Value, enabling tax-efficient transfer pricing and centralized IP control.

IPCo Strategy
Foundation Governance

Independent board majority, Fund Accounting, and related-party transaction safeguards prevent private inurement and maintain 501(c)(3) tax-exempt status.

Compliance First
); }