import Layout from "@/components/Layout"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; import { Link } from "react-router-dom"; import { Shield, Gavel, Building2, FileText, Activity, Megaphone, CheckCircle2, Users, } from "lucide-react"; export default function Trust() { return (
Transparency

Company & Governance

Clear, verifiable information about AeThex: leadership, legal entity, jurisdiction, policies, and status.

Organization Basic corporate details and contact
Legal name: {" "} AeThex Corporation
Jurisdiction: {" "} United States (Arizona)
Headquarters: {" "} Queen Creek, Arizona
Email:{" "} info@aethex.biz
Phone:{" "} (346) 556-7100
Leadership & Governance Accountability and oversight
  • Phased disclosures cadence: Phase 1 (executive roster + roles), Phase 2 (board/advisor bios and affiliations), Phase 3 (jurisdictional filings & compliance references).
  • Operational policies and escalation paths are documented in the Transparency hub.
  • Verified channels: website, docs, and official social accounts noted below.
Last updated: {new Date().toISOString().slice(0, 10)}
Executive Leadership Current executive team and public profiles {[ { name: "Anderson Gladney", title: "Founder & CEO", href: "https://www.linkedin.com/in/andersongladney/", }, { name: "Dylan Gladney", title: "Founder & COO", href: "https://www.linkedin.com/in/dylangladney/", }, { name: "Trevor Davis", title: "Co-Founder & CFO", href: "https://www.linkedin.com/in/trevor-davis-892642324/", }, { name: "Braden Eiser", title: "Co-Founder & CTO", href: "https://www.linkedin.com/in/bradeneiser/", }, ].map((p) => { const unavatar = `https://unavatar.io/${encodeURIComponent(p.href)}`; const fallback = `https://ui-avatars.com/api/?name=${encodeURIComponent(p.name)}&background=0D8ABC&color=fff&size=256`; const initials = p.name .split(" ") .map((n) => n[0]) .join("") .toUpperCase(); return (
{ (e.currentTarget as HTMLImageElement).src = fallback; }} /> {initials}
{p.name}
{p.title}
LinkedIn ↗
); })}
Policies & Legal Public policies and legal references {[ { title: "Privacy Policy", href: "/privacy" }, { title: "Terms of Service", href: "/terms" }, { title: "Status & Uptime", href: "/status" }, { title: "Changelog", href: "/changelog" }, { title: "Roadmap", href: "/roadmap" }, { title: "Investors", href: "/investors" }, ].map((l) => ( {l.title} ))} Brand Disambiguation Preventing name confusion

AeThex Corporation is an independent organization and is not affiliated with other entities that may use similar names. When in doubt, verify links against{" "} aethex.biz{" "} or{" "} aethex.dev.

Official channels:

); }